Advertisement
Nick42_for_win

FREE ALGOs [EasyAlgo 2.0]

Feb 16th, 2022
12,154
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.53 KB | None | 0 0
  1. // 8888888888 8888888b. 8888888888 8888888888 d8888 888 .d8888b. .d88888b. As you
  2. // 888 888 Y88b 888 888 d88888 888 d88P Y88b d88P" "Y88b Can see
  3. // 888 888 888 888 888 d88P888 888 888 888 888 888 Are all
  4. // 8888888 888 d88P 8888888 8888888 d88P 888 888 888 888 888 .d8888b Basic free
  5. // 888 8888888P" 888 888 d88P 888 888 888 88888 888 888 88K tradingview
  6. // 888 888 T88b 888 888 d88P 888 888 888 888 888 888 "Y8888b. indicators
  7. // 888 888 T88b 888 888 d8888888888 888 Y88b d88P Y88b. .d88P X88 repackaged
  8. // 888 888 T88b 8888888888 8888888888 d88P 888 88888888 "Y8888P88 "Y88888P" 88888P' into one
  9. //
  10. // FAQ
  11. //
  12. // Why?
  13. // I want you to see what you are willing to pay hundereds of dollars a month
  14.  
  15. // Has the code been leaked/hacked?
  16. // No, this code has been created from scratch only using common sense and public information from the internet
  17.  
  18. // What's the accuracy I can expect from this version of the indicator?
  19. // I'd say it's about 95% the same as the one you would pay
  20.  
  21. // The indicator needs to be updated?
  22. // Write me a private message on TradingView (Nick42_for_win)
  23.  
  24. // Can I suggest an indicator to get a FREE ALGOs version?
  25. // Write me a private message on TradingView (Nick42_for_win)
  26.  
  27. // Do you get any monetary return from this project?
  28. // Nope, 0$
  29.  
  30. // Enjoy ;)
  31.  
  32. //@version=5
  33. indicator("FREE ALGOs [EasyAlgo 2.0]", overlay=true, precision=0, explicit_plot_zorder=true, max_labels_count=500)
  34.  
  35. //---------------- EasyAlgo 2.0 | https://www.easyalgo.io --------------------//
  36. // Get user input
  37. emaCloud = input.bool(true, "EMA Cloud?")
  38. volCloud = input.bool(false, "Volatility Cloud?")
  39. volBands = input.bool(false, "Volatility Bands?")
  40. volSen = input.float(1.5, "Volatility Sensitivity (1-5 (Half Allowed))", 0.5, 5, 0.5)
  41. signals = input.bool(true, "Buy/Sell Signals?")
  42. levels = input.bool(false, "TP/SL Levels?")
  43. suppRes = input.bool(false, "Support/Resistance?")
  44. atrLen = input.int(14, "ATR Length", 1)
  45. atrRisk = input.int(2, "ATR/ Risk", 1)
  46. candlesT = input.bool(true, "Trending Candles")
  47. volBandsSen = input.int(5, "Vol Bands Sensitivity (Default: 5.0)", 1)
  48. useEma = input.bool(true, "Use Exponential MA?")
  49. barsLR = input.int(35, "S/R Looking Period", 1)
  50. // Get Components
  51. ema1 = ta.ema(ohlc4, int(5*volSen*2))
  52. ema2 = ta.ema(ohlc4, int(9*volSen*2))
  53. ema3 = ta.ema(ohlc4, int(13*volSen*2))
  54. ema4 = ta.ema(ohlc4, int(34*volSen*2))
  55. ema5 = ta.ema(ohlc4, int(50*volSen*2))
  56. f_kc(src, len, mult) =>
  57. float basis = useEma ? ta.ema(src, len) : ta.sma(src, len)
  58. float span = useEma ? ta.ema(ta.tr, len) : ta.sma(ta.tr, len)
  59. [basis + span * mult, basis - span * mult]
  60. [upperKC1, lowerKC1] = f_kc(close, 35, 0.5236 * volBandsSen)
  61. [upperKC2, lowerKC2] = f_kc(close, 35, 0.6854 * volBandsSen)
  62. [upperKC3, lowerKC3] = f_kc(close, 35, 0.8472 * volBandsSen)
  63. bull = ema3 >= ema3[1] and ema1 >= ema2 and ema1[1] < ema2[1]
  64. bear = ema3 <= ema3[1] and ema1 <= ema2 and ema1[1] > ema2[1]
  65. trigger = bull ? 1 : 0
  66. atrBand = ta.atr(atrLen) * atrRisk
  67. atrStop = trigger == 1 ? low - atrBand : high + atrBand
  68. barsL = barsLR
  69. barsR = barsLR
  70. pivotHigh = fixnan(ta.pivothigh(barsL, barsR)[1])
  71. pivotLow = fixnan(ta.pivotlow(barsL, barsR)[1])
  72. // Colors
  73. green = #00CC00 , green5 = volCloud ? color.new(#00CC00, 95) : na, green12_5 = volCloud ? color.new(#00CC00, 87.5) : na, green20 = emaCloud ? color.new(#00CC00, 80) : na
  74. red = #CC0000 , red5 = volCloud ? color.new(#CC0000, 95) : na, red12_5 = volCloud ? color.new(#CC0000, 87.5) : na, red20 = emaCloud? color.new(#CC0000, 80) : na
  75. orange = #FF9800 , orange50 = emaCloud ? color.new(orange, 50) : na
  76. gray = volBands ? #787B86 : na, gray40 = volBands ? color.new(gray, 60) : na, gray5 = volBands ? color.new(gray, 95) : na, gray20 = volBands ? color.new(gray, 80) : na
  77. // Plots
  78. p1 = plot(ema1, "", orange50, editable=false)
  79. p2 = plot(ema2, "", orange50, editable=false)
  80. p3 = plot(ema3, "", orange50, editable=false)
  81. p4 = plot(ema4, "", na, editable=false)
  82. p5 = plot(ema5, "", na, editable=false)
  83. fill(p4, p5, ema4 >= ema5 ? green5 : red5)
  84. fill(p3, p4, ema3 >= ema4 ? green12_5 : red12_5)
  85. fill(p2, p3, ema3 >= ema3[1] ? green20 : red20)
  86. fill(p1, p2, ema1 >= ema3 ? green20 : red20)
  87. barcolor(candlesT ? (ema3 >= ema3[1] ? green : red) : na)
  88. b1 = plot(upperKC1, "", gray40, editable=false)
  89. b2 = plot(upperKC2, "", gray40, editable=false)
  90. b3 = plot(upperKC3, "", gray40, editable=false)
  91. b4 = plot(lowerKC1, "", gray40, editable=false)
  92. b5 = plot(lowerKC2, "", gray40, editable=false)
  93. b6 = plot(lowerKC3, "", gray40, editable=false)
  94. fill(b1, b2, gray5)
  95. fill(b2, b3, gray20)
  96. fill(b4, b5, gray5)
  97. fill(b5, b6, gray20)
  98. plot(pivotHigh, "Resistance", not suppRes or ta.change(pivotHigh) ? na : red, 3, offset=-(barsR + 1), editable=false)
  99. plot(pivotLow, "Support", not suppRes or ta.change(pivotLow) ? na : green, 3, offset=-(barsR + 1), editable=false)
  100. y1 = low - (ta.atr(30) * 1.6)
  101. y2 = high + (ta.atr(30) * 1.6)
  102. buy = signals and bull ? label.new(bar_index, y1, ema4 >= ema5 ? "FIRM BUY" : "BUY", xloc.bar_index, yloc.price, #00CC00, label.style_label_up, #141923, size.normal) : na
  103. sell = signals and bear ? label.new(bar_index, y2, ema4 <= ema5 ? "FIRM SELL" : "SELL", xloc.bar_index, yloc.price, #CC0000, label.style_label_down, color.white, size.normal) : na
  104. lastTrade(src) => ta.valuewhen((ema3 >= ema3[1] and ema1 >= ema2 and ema1[1] < ema2[1]) or (ema3 <= ema3[1] and ema1 <= ema2 and ema1[1] > ema2[1]), src, 0)
  105. entry = levels ? label.new(time, close, "ENTRY " + str.tostring(lastTrade(close), "#.##"), xloc.bar_time, yloc.price, color.gray, label.style_label_left, color.white, size.normal) : na
  106. label.set_y(entry, lastTrade(close))
  107. label.delete(entry[1])
  108. stop_y = lastTrade(atrStop)
  109. stop = levels ? label.new(time, close, "SL " + str.tostring(stop_y, "#.##"), xloc.bar_time, yloc.price, #CC0000, label.style_label_left, color.white, size.normal) : na
  110. label.set_y(stop, stop_y)
  111. label.delete(stop[1])
  112. tp1_y = (lastTrade(close)-lastTrade(atrStop))*1 + lastTrade(close)
  113. tp1 = levels ? label.new(time, close, "1:1 TP " + str.tostring(tp1_y, "#.##"), xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white, size.normal) : na
  114. label.set_y(tp1, tp1_y)
  115. label.delete(tp1[1])
  116. tp2_y = (lastTrade(close)-lastTrade(atrStop))*2 + lastTrade(close)
  117. tp2 = levels ? label.new(time, close, "2:1 TP " + str.tostring(tp2_y, "#.##"), xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white, size.normal) : na
  118. label.set_y(tp2, tp2_y)
  119. label.delete(tp2[1])
  120. tp3_y = (lastTrade(close)-lastTrade(atrStop))*3 + lastTrade(close)
  121. tp3 = levels ? label.new(time, close, "3:1 TP " + str.tostring(tp3_y, "#.##"), xloc.bar_time, yloc.price, #00CC00, label.style_label_left, color.white, size.normal) : na
  122. label.set_y(tp3, tp3_y)
  123. label.delete(tp3[1])
  124. // Alerts
  125. alertcondition(bull, "Buy", "EasyAlgo 2.0\nBuy {{ticker}} @ {{close}}")
  126. alertcondition(bull and ema4 >= ema5, "Firm Buy", "EasyAlgo 2.0\nFirm Buy {{ticker}} @ {{close}}")
  127. alertcondition(bear and ema4 <= ema5, "Firm Sell", "EasyAlgo 2.0\nFirm Sell {{ticker}} @ {{close}}")
  128. alertcondition(bear, "Sell", "EasyAlgo 2.0\nSell {{ticker}} @ {{close}}")
Advertisement
Comments
  • hemal9022
    1 year
    # text 0.10 KB | 0 0
    1. found latest version of EZALGO premium indicator codes on telegram - @tradingview_premium_indicator
Add Comment
Please, Sign In to add comment
Advertisement