symbol是交易对,可以从OKEX的官网地址栏或者,详见视频说明。 price是挂单的价格,一般用{{close}}就是收盘价,还有 open(开盘价) / high(最高价) /low(最低价) 等 amount就是挂单的数量,统一用币的单位计算,比如0.1个比特币就填0.1,1000000个shib就用1000000 side就是挂单方向,有四种取值。sell -> 开空(如...
price是挂单的价格,一般用{{close}}就是收盘价,还有 open(开盘价) / high(最高价) /low(最低价) 等 amount就是挂单的数量,统一用币的单位计算,比如0.1个比特币就填0.1,1000000个shib就用1000000 side就是挂单方向,有四种取值。sell -> 开空(如果有仓位会先平掉);buy -> 开多(如果有仓位会先平掉);c...
indicator(title="Directional Movement Index", shorttitle="DMI", format=format.price, precision=4, timeframe="", timeframe_gaps=true) lensig = input.int(14, title="ADX Smoothing", minval=1, maxval=50) len = input.int(14, minval=1, title="DI Length") up = ta.change(high) down = ...
例如内置变量high、low、close在历史Bar上是确定的,在实时Bar上可能每次行情变动时这些值是会发生变化的。
a = open + high + low + close 一个长的plot()调用可以被包装成。close1 = reque...
insidebar = (high<=high[1] and low>=low[1]) outsidebar = not insidebar and ((high>=high[1] and low<=low[1])) plotshape(insidebar, title="I", style=shape.cross, location=location.belowbar, size=size.tiny,color=color.green, transp=0, offset=0) ...
这样可以保证诸如 high、low、close 之类的在历史k线上永远不变的内置变量,在实时k线的每次脚本执行中都是可变的。 脚本计算中使用的内置变量的变化也会相应引起计算结果的变化,这对于跟随实时价格变动的脚本来说是必须的。 结果就是,在实时k线上,同一个脚本每次执行可能产生不同的结果。
Sort By:DefaultName (A - Z)Name (Z - A)Price (Low > High)Price (High > Low)Rating (Highest)Rating (Lowest)Date (Old > New)Date (New > Old) Add to Wish List Add to Compare $99.00USD$60.00USD Broadening Formation chart pattern indicator with alert for tradingview ...
步骤⼀:选好交易币种/交易对,选好K线时间段 如下图,⾸先点击这⾥选币 ⽐如我们要⽤BTCUSDT然后选OKEX的是数据源,注意我们软件⽤OKEX,所以数据源⼀定要选OKEX,如果⽤合约,数据源最好也选对应的合约数据源,根据下图选取即可 选择K线周期,以4⼩时为例 步骤⼆:修改策略为指标 选定我们需要...
在Tradingview图表中绘制DOM(市场深度),可以通过以下步骤完成: 创建一个自定义指标(indicator): 首先,打开Tradingview网站并登录您的账户。 在左上角的搜索栏中输入“Pine Editor”并选择打开。 在Pine Editor中,点击“新建”按钮创建一个新的指标。 为指标命名,并确保选择了正确的交易市场。 定义并初始化DOM数...