Advertisement
NKactive

Untitled

Oct 22nd, 2023
301
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.53 KB | None | 0 0
  1. // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
  2. // © Ontra02
  3.  
  4. //@version=5
  5.  
  6. indicator("Advanced Lookback Checker From Philip", shorttitle = "AVC")
  7.  
  8. //Getting Inputs
  9. Startlookbackperiod = input.int(0, "Start Period", 0, 10000, 1, tooltip = "When the Counter starts to count (0 = current Bar, 1 = Previous Bar etc.)")
  10. Lookbackperiod = input.int(defval = 10, title = "Lookbackperiod", minval = 1, maxval = 10000, step = 1, tooltip = "How many bars get referenced in the Lookback System")
  11.  
  12.  
  13. ColumnsOn = input.bool(true,"Columns On/Off", "If the Columns get shown ( The EMAs are based on these Columns)", group = "Columns")
  14.  
  15. //Barcolor Change Input
  16. BothEmacolorBar = input.bool(true, "Both EMA (Average) ", "Both EMA in an Average ", group = "Color Change (Only One can work at one Time)")
  17. TwoEmacolorBar = input.bool(false, "Both EMA", "Both EMA need to be in one Direction for a Green/Red Signal", group = "Color Change (Only One can work at one Time)")
  18. Emacolorbar = input.bool(false, "EMA Color Bar change", "The Bars change Colors if Ema is showing a Trend", group="Color Change (Only One can work at one Time)")
  19. EmaColumnscolorbar = input.bool(false, "EMA Columns Color Bar change", "The Bars change Colors if the EMA Columns is showing a Trend.", group = "Color Change (Only One can work at one Time)")
  20. Columnscolorbar = input.bool(false, "Columns Color Bar change", "The Bars change Colors if the Columns are showing a Trend.", group="Color Change (Only One can work at one Time)")
  21. MacdcolorBar = input.bool(false, "Macd Color Bar change", "The Bars change Colors if the Macd shows a Trend", group="Color Change (Only One can work at one Time)")
  22. Bothandmacd = input.bool(false, "Both EMa and Macd", tooltip = "Only a Signal if the Ema and the Macd are negative")
  23. BOthandEmaMacd = input.bool(false, "Both EMA and MAcd EMA", "Only a Signal if the Trend is up and the EMA for the MAcd is up")
  24.  
  25. //Ema Input Settings for the Columns Strength
  26. EmaOn = input.bool(defval=true, title = "Ema On/Off", tooltip = "An Ema on the Columns for elimination of false Signals", group = "Ema")
  27. EmaLength = input.int(defval = 10, title = "Ema Length", tooltip = "Length of the Ema", group = "Ema", minval = 1)
  28. EmaWidth = input.int(defval = 2, title = "Ema Width", tooltip = "How width the Line of Ema is", options = [1,2,3,4,5], group = "Ema")
  29. EmaColorup = input.color(defval = color.green, title = "Ema Color Up Trend", tooltip = "Which Color gets shown on the Ema if the TrendDirection is positive", group = "Ema")
  30. EmaColorDown = input.color(defval = color.red, title = "Ema Color Down Trend", tooltip = "Which Color gets shown on the Ema if the TrendDirection is negative", group = "Ema")
  31.  
  32. //Ema Input Settings for how many Columns green and red
  33. EmaOnColumns = input.bool(true, "EMÁ For Columns", "This is different to the other Ema.On this one gets checked how many Bars were positive and negative and not how strong they are.",
  34. group = "Ema Columns")
  35. EmaOnColumnsLentgh = input.int(5, "EMA For Columns Length", tooltip = "Length of the Ema for the Columns", group = "Ema Columns")
  36. EmaColumnsWidth = input.int(defval = 3, title = "Ema Columns Width", tooltip = "How width the Line of Ema Columns is", options = [1,2,3,4,5], group = "Ema Columns")
  37. EmaColumnsColorup = input.color(defval = color.blue, title = "Ema Columns Color Up Trend", tooltip = "Which Color gets shown on the Ema Columns if the TrendDirection is positive", group = "Ema Columns")
  38. EmaColumnsColorDown = input.color(defval = color.purple, title = "Ema Columns Color Down Trend", tooltip = "Which Color gets shown on the Ema Columns if the TrendDirection is negative", group = "Ema Columns")
  39.  
  40. //Both EMA Input Settings
  41. BothEmaON = input.bool(true, "Both EMA ", tooltip = "Both EMA together shown on Chart", group = "Both EMA")
  42. BothEmaColorup = input.color(defval = color.gray, title = "Both EMA Color Up Trend", tooltip = "Which Color gets shown on the Both Ema if the TrendDirection is positive", group = "Both EMA")
  43. BothEmaColorDown = input.color(defval = color.orange, title = "Both EMA Color Down Trend", tooltip = "Which Color gets shown on the Both EMA if the TrendDirection is negative", group = "Both EMA")
  44. BothEmaWidth = input.int(3,"Both Ema Width", tooltip = "How Width the Average of both Ema is" ,options = [1,2,3,4,5], group = "Both EMA")
  45.  
  46. //MACD Input Settings
  47. ShowMacd = input.bool(true, "Show Macd", "If the Macd based on the Slow and Fast Macd get shown", group = "Show Macd")
  48. ShowFastandSlowMacd = input.bool(false, "Show the Ma for Macd", "If the Slow and Fast Macd get shown", group = "Show Macd")
  49. MaTypeSlow = input.string("EMA", "Moving Average Slow Type", ["EMA", "SMA", "RMA", "HMA", "SWMA", "WMA"], "Which MA gets used in the Slow Macd", group = "Slow Macd")
  50. MaTypeFast = input.string("EMA", "Moving Average Fast Type", ["EMA", "SMA", "RMA", "HMA", "SWMA", "WMA"], "Which MA gets used in the Fast MAcd", group = "Fast Macd")
  51. SlowMacd = input.int(10, "Slow MA for Macd", tooltip = "The Length of the Slow MA of the Macd for the Columns", group = "Slow Macd")
  52. FastMAcd = input.int(5, "Fast MA for Macd", tooltip = "The Length of the Fast MA of the Macd for the Columns", group = "Fast Macd")
  53. PlotMacdAverage = input.bool(false,"MA for the Macd", "This is the MA of the Macd Columns", group = "Macd Average")
  54. MacdAveragelength = input.int(5,"Length for the MA", tooltip = "The Length for the Average of the Macd", group = "Macd Average")
  55. MacdAverageType = input.string("SMA", "Moving Average Type", ["EMA", "SMA", "RMA", "HMA", "SWMA", "WMA"], group = "Macd Average")
  56. //Input Settings for significance of different Events happening in the Loop (for Counter)
  57. WhatisaPoint = input.bool(false, "What is a Point?", "The System is build on Points. So if something of the Conditions are met, The choosen Number of Coins get Added if it is bullish and subtracted if negative
  58. If Everything is added we have an overall Point which is the Direction of the Trend. You can choose down below how many Points get added if the Condition is true. Only Positive Numbers please!!!(0,1,2,3,4,5 etc.) ", group = "Significance of previous Bar Action ")
  59. Bull_BearBar = input.int( 15,title = "Bar Bullish or Bearish", tooltip = "How many Points get Added if the Bar is Bullish or Bearish",group = "Significance of previous Bar Action ")
  60. LastBarBullorBear = input.int( 10,title = "Last Bars Direction", tooltip = "How many Points get Added if the Bar last Bar is Bullish or Bearish",group = "Significance of previous Bar Action ")
  61. CloseishigherthanpreviousBarhigh_low = input.int( 1,title = "Bar closed higher/lower than previous Bar", tooltip = "How many Points get Added if the Bar closed higher/lower than previous Bar", group = "Significance of previous Bar Action ")
  62. BarclosedtwotimesbiggerthanpreciousBar = input.int( 1,title = "Bar closed 2 times bigger than previous Bar", tooltip = "How many Points get Added if the Bar closed 2 times bigger than previous Bar", group = "Significance of previous Bar Action ")
  63. BarclosedfivetimesbiggerthanpreciousBar = input.int( 1,title = "Bar closed 5 times bigger than previous Bar", tooltip = "How many Points get Added if the Bar closed 5 times bigger than previous Bar", group = "Significance of previous Bar Action ")
  64. BarishigherthanfiveBarsago = input.int( 1,title = "Bar closed higher/lower than 5 Bars ago", tooltip = "How many Points get Added if the Bar closed higher than 5 Bars ago", group = "Significance of previous Bar Action ")
  65. BarishigherthantenBarsago = input.int( 1,title = "Bar closed higher/lower than 10 Bars ago", tooltip = "How many Points get Added if the Bar closed higher/lower than 10 Bars ago", group = "Significance of previous Bar Action ")
  66. TwoBarsinrow = input.int( 2,title = "Two Bars in the Same Direction in Row", tooltip = "How many Points get Added if Two Bars in row are in one Direction", group = "Significance of previous Bar Action ")
  67. ThreeBarsinrow = input.int( 1,title = "Three Bars in the Same Direction in Row", tooltip = "How many Points get Added if Three Bars in row are in one Direction", group = "Significance of previous Bar Action ")
  68. FiveBarsinrow = input.int( 1,title = "Five Bars in the Same Direction in Row", tooltip = "How many Points get Added if Five Bars in row are in one Direction", group = "Significance of previous Bar Action ")
  69. HighestorlowestBar = input.int( 1,title = "Highest or Lowest Bar over the past Bars", tooltip = "How many Points get Added if the Current Bar is the highest or Lowest Point over the past Price Action", group = "Significance of previous Bar Action ")
  70. HighestorlowestBarLength = input.int( 10,title = "Highest or Lowest Bar over this Length", tooltip = "The Price needs to be above/below the highest/lowest Price over these Past (1 = one Bar)", group = "Significance of previous Bar Action ")
  71. HowmuchChangeforInvalidationofCandle = input.float(0.00, "Invalidation", tooltip = "How much one Candle needs to move to work in the System. In % but you need to type 0.01 = 1% etc.", step = 0.0001, group = "Significance of previous Bar Action")
  72. EmadslowLength = input.int(21, "Slow EMA", tooltip = "Length of the small EMA" ,group = "Significance of previous Bar Action")
  73. Emadfastlength = input.int(14, "Slow EMA", tooltip = "Length of the Fast EMA" ,group = "Significance of previous Bar Action")
  74. EMAcrossover = input.int(10, "Ema Crossover", tooltip = "How my Points get Added if the EMa crosses)", group = "Significance of previous Bar Action ")
  75.  
  76. //Different TF Inputs
  77. AdvancedLookbackCheckerondifferentTF = input.bool(true, "AVC on differrent TF", "You can turn on that the Indicator uses Data from other Timeframes so that you have faster Signals or a Longer Term bias", group = "Different TF")
  78. DifferentTF = input.timeframe("D", "Different Timeframe", tooltip = "Which Timeframe is used for the different Timeframe", group = "Different TF")
  79. DifferentTFsignificanceofPoints = input.int( 1,title = "Different Timeframe Points", tooltip = "How many Points get Added if the other set Timeframe is Bullish or Bearish",group ="Different TF")
  80. DifferentTFplot = input.bool(false, "Show different Timeframe", "If the EMA of the different Timeframe gets shown", group ="Different TF")
  81.  
  82. // Variables
  83. PositiveTrend = 0
  84. Negativetrend = 0
  85. PreviousbarBull = close[1] > open[1]
  86. PreviousbarBear = close[1] < open[1]
  87. PreviousBarHigh = high[1]
  88. PreviousBarLow = low[1]
  89. PreviousBarcloseminusopen = close[1] - open[1]
  90. PreviousBaropenminusclose = open[1] - close[1]
  91. CurrentBarBull = close > open
  92. CurrentBarBear = close < open
  93. FiveBarsAgo = close[5]
  94. TenBarsAgo = close[5]
  95. TwoBarsPositiveinRow = close > open and close[1] > open[1]
  96. TwoBarsNegativeinRow = close < open and close[1] < open[1]
  97. ThreeBarsPositiveinRow = close > open and close[1] > open[1] and close[2] > open[2]
  98. ThreeBarsNegativeinRow = close < open and close[1] < open[1] and close[2] < open[2]
  99. FiveBarsPositiveinRow = close > open and close[1] > open[1] and close[2] > open[2] and close[3] > open[3] and close[4] > open[4]
  100. FiveBarsNegativeinRow = close < open and close[1] < open[1] and close[2] < open[2] and close[3] < open[3] and close[4] < open[4]
  101. Barisverysmalldown = (open - close) < open * HowmuchChangeforInvalidationofCandle
  102. Barisverysmallup = (close - open) < open * HowmuchChangeforInvalidationofCandle
  103. highestpoint = ta.highest(close, HighestorlowestBarLength)
  104. lowestpoint = ta.lowest(close, HighestorlowestBarLength)
  105. //Loop for Creation of Lookback System
  106. for Counter = Startlookbackperiod to Lookbackperiod
  107. if not Barisverysmallup or not Barisverysmalldown
  108.  
  109. if open[Counter] < close[Counter]
  110. PositiveTrend := PositiveTrend + Bull_BearBar
  111.  
  112. if close[Counter] < open[Counter]
  113. Negativetrend := Negativetrend + Bull_BearBar
  114.  
  115. if PreviousbarBull[Counter]
  116. PositiveTrend := PositiveTrend + LastBarBullorBear
  117.  
  118. if PreviousbarBear[Counter]
  119. Negativetrend := Negativetrend + LastBarBullorBear
  120.  
  121. if close[Counter] > PreviousBarHigh[Counter]
  122. PositiveTrend := PositiveTrend + CloseishigherthanpreviousBarhigh_low
  123.  
  124. if close[Counter] < PreviousBarLow[Counter]
  125. Negativetrend := Negativetrend + CloseishigherthanpreviousBarhigh_low
  126.  
  127. if CurrentBarBull
  128. if (close[Counter] - open[Counter]) > PreviousBarcloseminusopen[Counter] *2
  129. PositiveTrend := PositiveTrend + BarclosedtwotimesbiggerthanpreciousBar
  130.  
  131. if CurrentBarBear
  132. if (open[Counter] - close[Counter]) < PreviousBaropenminusclose *2
  133. Negativetrend := Negativetrend + BarclosedtwotimesbiggerthanpreciousBar
  134.  
  135. if CurrentBarBull
  136. if (close[Counter] - open[Counter]) > PreviousBarcloseminusopen[Counter] *5
  137. PositiveTrend := PositiveTrend + BarclosedfivetimesbiggerthanpreciousBar
  138.  
  139. if CurrentBarBear
  140. if (open[Counter] - close[Counter]) < PreviousBaropenminusclose *5
  141. Negativetrend := Negativetrend + BarclosedfivetimesbiggerthanpreciousBar
  142.  
  143. if CurrentBarBull
  144. if close[Counter] > FiveBarsAgo[Counter]
  145. PositiveTrend := PositiveTrend + BarishigherthanfiveBarsago
  146.  
  147. if CurrentBarBear
  148. if close[Counter] <FiveBarsAgo[Counter]
  149. Negativetrend := Negativetrend + BarishigherthanfiveBarsago
  150.  
  151. if CurrentBarBull
  152. if close[Counter] > TenBarsAgo[Counter]
  153. PositiveTrend := PositiveTrend + BarishigherthantenBarsago
  154.  
  155. if CurrentBarBear
  156. if close[Counter] < TenBarsAgo[Counter]
  157. Negativetrend := Negativetrend + BarishigherthantenBarsago
  158.  
  159. if TwoBarsPositiveinRow[Counter]
  160. PositiveTrend := PositiveTrend + TwoBarsinrow
  161.  
  162. if TwoBarsNegativeinRow[Counter]
  163. Negativetrend := Negativetrend +TwoBarsinrow
  164.  
  165. if ThreeBarsPositiveinRow[Counter]
  166. PositiveTrend := PositiveTrend + ThreeBarsinrow
  167.  
  168. if ThreeBarsNegativeinRow[Counter]
  169. Negativetrend := Negativetrend +ThreeBarsinrow
  170.  
  171. if FiveBarsPositiveinRow[Counter]
  172. PositiveTrend := PositiveTrend + FiveBarsinrow
  173.  
  174. if FiveBarsNegativeinRow[Counter]
  175. Negativetrend := Negativetrend +FiveBarsinrow
  176.  
  177. if highestpoint
  178. PositiveTrend := PositiveTrend + HighestorlowestBar
  179.  
  180. if lowestpoint
  181. Negativetrend := Negativetrend + HighestorlowestBar
  182.  
  183. if (ta.ema(close, EmadslowLength) > ta.ema(close, Emadfastlength))
  184. Negativetrend := Negativetrend + EMAcrossover
  185.  
  186. if (ta.ema(close, EmadslowLength) < ta.ema(close, Emadfastlength))
  187. PositiveTrend := PositiveTrend + EMAcrossover
  188.  
  189. //Variable for Trend Direction
  190. TrendDirection0 = PositiveTrend - Negativetrend
  191.  
  192. Direction0 = 0
  193. if TrendDirection0 > 0
  194. Direction0 := 2
  195.  
  196. if TrendDirection0 < 0
  197. Direction0 := -2
  198.  
  199. //Direction Average of Both Emas for TwoEmaCo
  200. DirectionforBothEma0 = ((ta.ema(TrendDirection0, EmaLength) + ta.ema(Direction0, EmaOnColumnsLentgh)) /2)
  201.  
  202. //Switch for Macd MaType = input.string("EMA", "Moving Average Type", ["EMA", "SMA", "RMA", "HMA", "SWMA", "WMA"])
  203. MAtypeswitchslow = switch MaTypeSlow
  204. "EMA" => ta.ema(TrendDirection0, SlowMacd)
  205. "SMA" => ta.sma(TrendDirection0, SlowMacd)
  206. "RMA" => ta.rma(TrendDirection0, SlowMacd)
  207. "HMA" => ta.hma(TrendDirection0, SlowMacd)
  208. "SWMA"=> ta.swma(TrendDirection0)
  209. "WNA" => ta.wma(TrendDirection0, SlowMacd)
  210.  
  211. MAtypeswitchfast = switch MaTypeFast
  212. "EMA" => ta.ema(TrendDirection0, FastMAcd)
  213. "SMA" => ta.sma(TrendDirection0, FastMAcd)
  214. "RMA" => ta.rma(TrendDirection0,FastMAcd)
  215. "HMA" => ta.hma(TrendDirection0, FastMAcd)
  216. "SWMA"=> ta.swma(TrendDirection0)
  217. "WNA" => ta.wma(TrendDirection0, FastMAcd)
  218.  
  219. //Create a Macd
  220. Macd = MAtypeswitchfast - MAtypeswitchslow
  221.  
  222. MacdAverageTypeswitch = switch MacdAverageType
  223. "EMA" => ta.ema(Macd, MacdAveragelength)
  224. "SMA" => ta.sma(Macd, MacdAveragelength)
  225. "RMA" => ta.rma(Macd,MacdAveragelength)
  226. "HMA" => ta.hma(Macd, MacdAveragelength)
  227. "SWMA"=> ta.swma(Macd)
  228. "WNA" => ta.wma(Macd, MacdAveragelength)
  229.  
  230. //New Loop for beacuse we need the Data
  231. RequestedTFData = request.security(syminfo.tickerid, DifferentTF, DirectionforBothEma0)
  232.  
  233.  
  234.  
  235. if AdvancedLookbackCheckerondifferentTF
  236. if RequestedTFData > 0
  237. PositiveTrend := PositiveTrend + DifferentTFsignificanceofPoints
  238.  
  239. if RequestedTFData < 0
  240. Negativetrend := Negativetrend + DifferentTFsignificanceofPoints
  241.  
  242.  
  243.  
  244. //Variable for Trend Direction
  245. TrendDirection = PositiveTrend - Negativetrend
  246.  
  247. Direction = 0
  248.  
  249. if TrendDirection > 0
  250. Direction := 2
  251.  
  252. if TrendDirection < 0
  253. Direction := -2
  254.  
  255. DirectionAddition = Direction
  256.  
  257. //Direction Average of Both Emas for TwoEmaCo
  258. DirectionforBothEma = ((ta.ema(TrendDirection, EmaLength) + ta.ema(Direction, EmaOnColumnsLentgh)) /2)
  259.  
  260.  
  261.  
  262. //plot Data to Chart
  263. plot(ColumnsOn ? TrendDirection : na, title = "Trend Direction", color = TrendDirection > 0 ? color.rgb(0,255,0,70) : color.rgb(255,0,0, 70),
  264. style = plot.style_columns)
  265.  
  266. plot(EmaOn ? ta.ema(TrendDirection, EmaLength) : na, title = "EMA Plot", color = ta.ema(TrendDirection, EmaLength) > 0 ? EmaColorup : EmaColorDown , linewidth = EmaWidth)
  267.  
  268. plot(EmaOnColumns ? ta.ema(Direction, EmaOnColumnsLentgh) : na, title = "EMA for Columns Plot", linewidth = EmaColumnsWidth, color = ta.ema(Direction, EmaOnColumnsLentgh) > 0 ?
  269. EmaColumnsColorup : EmaColumnsColorDown )
  270.  
  271. plot(BothEmaON ? DirectionforBothEma : na, "Both Ema Together", color = DirectionforBothEma > 0 ? BothEmaColorup : BothEmaColorDown , linewidth = BothEmaWidth)
  272.  
  273. plot(DifferentTFplot ? RequestedTFData : na, "Plot different Time Frame Data", RequestedTFData > 0 ? color.green : color.red)
  274. //Plot macd
  275. plot(ShowMacd ? Macd : na, "Macd", color = Macd > 0 ? color.green : color.red, style = plot.style_columns)
  276. plot(ShowFastandSlowMacd ? MAtypeswitchfast : na, "Fast MA", color = MAtypeswitchfast > 0 ? color.green: color.red)
  277. plot(ShowFastandSlowMacd ? MAtypeswitchslow: na , "Fast MA", color = MAtypeswitchslow > 0 ? color.green: color.red, linewidth = 4)
  278. plot(PlotMacdAverage ? MacdAverageTypeswitch : na, "Macd Average", MacdAverageTypeswitch > MacdAverageTypeswitch[1] ? color.green : color.red, 4)
  279.  
  280. //change the Color of a Bar depending on Trend Direction for the EMA
  281. barcolor(Emacolorbar ? (ta.ema (TrendDirection, EmaLength) > 0 ? color.green : color.red) : na)
  282.  
  283. //change the Color of a Bar depending on Trend Direction for the Columns
  284. barcolor(Columnscolorbar ? (TrendDirection > 0 ? color.green : color.red) : na)
  285.  
  286. //change the Color of a Bar depending on Trend Direction of EMA Columns
  287. barcolor(EmaColumnscolorbar ? (ta.ema(Direction, EmaOnColumnsLentgh) > 0 ? color.green : color.red) : na)
  288.  
  289. //change the Color of a Bar if Both EMAs are in one Diretion
  290. barcolor (TwoEmacolorBar and (ta.ema(Direction, EmaOnColumnsLentgh)) > 0 and ta.ema(TrendDirection, EmaLength) > 0 ? color.green : na)
  291. barcolor (TwoEmacolorBar and (ta.ema(Direction, EmaOnColumnsLentgh)) < 0 and ta.ema(TrendDirection, EmaLength) < 0 ? color.red : na)
  292.  
  293. //change the Color of a Bar depending on the Average of both EMA
  294. barcolor(BothEmacolorBar ? (DirectionforBothEma > 0 ? color.green : color.red) : na)
  295.  
  296. barcolor(MacdcolorBar ? (Macd > 0 ? color.green : color.red) : na)
  297.  
  298. //Change the colorof a bar depending on if Both ema and the Macd are in one Direction
  299. barcolor(Bothandmacd ? (Macd > 0 and DirectionforBothEma > 0 ? color.green : na):na)
  300. barcolor(Bothandmacd ? (Macd < 0 and DirectionforBothEma < 0 ? color.red : na):na)
  301.  
  302. barcolor(not BOthandEmaMacd ? na : DirectionforBothEma > 0 and MacdAverageTypeswitch > MacdAverageTypeswitch[1] ? color.green : na)
  303. barcolor( not BOthandEmaMacd ? na : DirectionforBothEma < 0 and MacdAverageTypeswitch < MacdAverageTypeswitch[1] ? color.red : na)
  304.  
  305. //Alert Variables
  306. BuySignalforDirectionforBothEma = ta.crossover(DirectionforBothEma, 0)
  307. SellSignalforDirectionforBothEma = ta.crossunder(DirectionforBothEma, 0)
  308.  
  309. //Create Alerts
  310. alertcondition(BuySignalforDirectionforBothEma, "AVCV Positive", "AVCV zeigt Positiven Trend " )
  311. alertcondition(SellSignalforDirectionforBothEma, "AVCV Negative", "AVCV zeigt Negativen Trend ")
  312.  
  313.  
  314.  
Advertisement
Comments
  • # text 0.13 KB | 0 0
    1. they are giving all types of premium tradingview indicators codes available on telegram - https://t.me/tradingview_premium_indicator
Add Comment
Please, Sign In to add comment
Advertisement