1.在TradingView中搜索指标SuperTrend STRATEGY,加载到图表中。 2.搜索Trend Indicator A-V2 (Smoothed Heikin Ashi Cloud) [Dziwne]指标,添加到图表中。 3.搜索QQE MOD指标,添加到图表中 综合应用三个指标的方法 做多: 1. SuperTrend 出现买入信号; 2. QQE MOD 出现零轴上方的蓝色柱状图; 3. 趋势指标 A-V2...
脚本将该值与内置的 bar_index 一起标绘以验证输出: //@version=5indicator("My script")//@function 将前一根k线上的 index 值加1,来计算当前k线的 indexcalcBarIndex()=>intindex=naindex:=nz(index[1],replacement=-1)+1//第一根k线上,index[1]是取不到值的,用-1代替//nz() 函数会将 na 值...
14),ta.sma(close,28))if(longCondition)strategy.entry("My Long Entry Id",strategy.long)shortCondition=ta.crossunder(ta.sma(close,14),ta.sma(close,28))if(shortCondition)strategy.entry("My Short Entry Id",strategy.short)
I teach you how to get past TradingView’s three indicator limit and show you techniques that allow you to monitor more than one asset on a chart. All on the free account. Yes, this course saves you the cost of a TradingView pro subscription. ...
Pine editor is where we will be creating our code. To launch it, click onPine Editoron the very bottom of your screen. A screen should pop up that looks like the image below. In Pine script, you will either be creating anindicatoror astrategy. We will discuss the differences extensively...
1.在TradingView中搜索指标SuperTrend STRATEGY,加载到图表中。 2.搜索Trend Indicator A-V2 (Smoothed Heikin Ashi Cloud) [Dziwne]指标,添加到图表中。 3.搜索QQE MOD指标,添加到图表中 综合应用三个指标的方法 做多: 1. SuperTrend 出现买入信号; 2. QQE MOD 出现零轴上方的蓝色柱状图; 3. 趋势指标 A-V2...