AGAIG Trend Vertical Line For ThinkOrSwim

csricksdds

Trader Educator
VIP
Several have asked if there is a way to make the vertical line edition of this indicator thicker, but of course there is not. I would like them thicker as well. In addition to using my upper vertical lines I made a lower Histogram to more easily catch the eye. Even though this indicator will repaint it has been the most accurate indicator I use. I typically day trade the SPY and/or QQQs on a 5 min. Daily Chart, although this is AsGoodAsItGets on most stocks or ETFs you trade.
yrLt6k0.png


Here is the code:
Ruby:
# AsGoodAsItGets Lower Indicator
#CSR Buy/Sell Arrows with Short/Long Bubbles
#Developed 4-23-23 First Edition 8-23-22 Revised
#Updated 3/16/24 by C. Ricks

declare lower;

input atrreversal = 2.0;

def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signaldown.DefineColor("signaldown", Color.Red);
AddVerticalLine(!isNAN(EIH),"SHORT", color.red,curve.long_dash);

plot signalrevBot = !isNaN(EIL);

Signalrevbot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signalrevBot.DefineColor("signalrevBot", Color.GREEN);
AddVerticalLine(!isNAN(EIL),"LONG", color.Green,curve.long_dash);

##End Code
 
Last edited by a moderator:
Looks amazing for options trading.

.

I made substantial improvements!!!!!!!!!!

I added labels that tell you how many shares you can purchase with your budget at the plot lines.

I added Long & Short profit labels that tell you how much money you'll make if you buy with your budget at the bullish plot line, and how much money you would have made by shorting with your budget on the bearish plot line.


I also made the plot lines say what price they're at.

http://tos.mx/!Mho7uhTb

Code:
# AsGoodAsItGets Lower Indicator
# CSR Buy/Sell Arrows with Short/Long Bubbles
# Developed 4-23-23 First Edition 8-23-22 Revised
# Updated 3/16/24 by C. Ricks
# Enhanced to continuously display profit labels for both buy and sell signals
# and to show companion labels for the starting prices of shorting and longing

declare lower;

input atrreversal = 2.0;
input sharePurchaseBudget = 5000; # Adjusted your budget to $5000
input showProfitLabels = yes; # Toggle the display of profit labels

def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signaldown.SetDefaultColor(Color.white);
AddVerticalLine(!isNAN(EIH),"SHORT @ " + AsDollars(priceh), Color.white, Curve.firm);
AddLabel(!isNAN(EIH) and showProfitLabels, "SHORT Signal Price: " + AsDollars(priceh), Color.WHITE);

plot signalrevBot = !isNaN(EIL);
signalrevBot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signalrevBot.SetDefaultColor(Color.cyan);
AddVerticalLine(!isNAN(EIL),"LONG @ " + AsDollars(pricel), Color.cyan, Curve.FIRM);
AddLabel(!isNAN(EIL) and showProfitLabels, "LONG Signal Price: " + AsDollars(pricel), Color.CYAN);

# Detect signal appearances to control profit calculations
def newBuySignal = Crosses(!IsNaN(EIL), 0.5, CrossingDirection.ABOVE);
def newSellSignal = Crosses(!IsNaN(EIH), 0.5, CrossingDirection.ABOVE);

def lastBuyPrice = if newBuySignal then pricel else lastBuyPrice[1];
def lastSellPrice = if newSellSignal then priceh else lastSellPrice[1];
def lastCoverPrice = if newBuySignal then pricel else lastCoverPrice[1];

# Calculate potential profits and update continuously
def sharesToShort = Round(sharePurchaseBudget / lastSellPrice);
def sharesToBuy = Round(sharePurchaseBudget / lastBuyPrice);

# Correcting the short profit calculation based on new entry and exit points
def shortEntryPrice = if newSellSignal then lastSellPrice else shortEntryPrice[1];
def shortExitPrice = if newBuySignal then lastCoverPrice else shortExitPrice[1];
def shortProfit = (shortEntryPrice - shortExitPrice) * sharesToShort;
def updatedShortProfit = if newBuySignal then shortProfit else updatedShortProfit[1]; # Update profit only on exit signal

# Adding Long Entry and Exit Prices, and Long Profit Calculation
def longEntryPrice = lastBuyPrice;
def longExitPrice = if newSellSignal then lastSellPrice else longExitPrice[1];
def longProfit = (longExitPrice - longEntryPrice) * sharesToBuy;
def updatedLongProfit = if newSellSignal then longProfit else updatedLongProfit[1]; # Update profit only on exit signal

# Corrected Short Profit display based on entry at signaldown and exit at signalrevBot
AddLabel(showProfitLabels, "Short Entry Price: " + AsDollars(shortEntryPrice) + ", Exit Price: " + AsDollars(shortExitPrice), Color.WHITE);
AddLabel(yes, "Shares to short @ GO-Short plot: " + sharesToShort + " shares", Color.WHITE);
AddLabel(showProfitLabels, "Short - Profit: " + AsDollars(updatedShortProfit), if updatedShortProfit > 0 then Color.white else Color.RED);

# Adding Labels for Long Position
AddLabel(showProfitLabels, "Long Entry Price: " + AsDollars(longEntryPrice) + ", Exit Price: " + AsDollars(longExitPrice), Color.CYAN);
AddLabel(yes, "Shares to Buy @ Go-Long plot: " + sharesToBuy + " shares", Color.CYAN);
AddLabel(showProfitLabels, "Long - Profit: " + AsDollars(updatedLongProfit), if updatedLongProfit > 0 then Color.CYAN else Color.RED);
 

Attachments

  • fcvdfdfsd.png
    fcvdfdfsd.png
    110.8 KB · Views: 534
Last edited by a moderator:
Hi csricksdds, does the lower histograms repaints? If it doesn't, can we get a watchlist code? I tried to modify code for the watchlist, but it fails to load with below message.
1722013706818.png
 
Hi csricksdds, does the lower histograms repaints? If it doesn't, can we get a watchlist code? I tried to modify code for the watchlist, but it fails to load with below message.
View attachment 22463

Yes, all Indicators that have a prefix of REPAINTs on the forum repaint.

No Scans, No Watchlists, No Conditional Orders for repainters.
Schwab limits the amount of resources available in scans, watchlists, and conditional orders. This script and all other zigzag, high-low study's requirements exceeds the maximum resources available.
Meaning, most repainters is too complicated for use in any of the ToS widgets. They can only be used to plot on the chart.
 
Last edited:
I was hoping it was possible to create a watchlist version of this study. Any feedback would be appreciated.

#CSR Buy/Sell Arrows with Short/Long Haul Filter Bubbles
#Developed 4-9-22 First Edition
#Modified by C. Ricks to show direction arrows only (Large Yellow Arrows Up/Down)

declare upper;

input atrreversal = 2.0;#Hint atrreversal: Turn down for more entries, up for less entries. Purple signal indicates low point reversal and close approaching Kijun. Orange signal indicates the price is crossing the Kijun. Green signal indicates the low of the candle holds over the Kijun. Red signal means reversal at a high point.
def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_down);
signaldown.setdefaultcolor (CreateColor (255, 255, 0));



plot signalrevBot = !isNaN(EIL);
signalrevBot.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_up);
signalrevBot.setdefaultcolor (CreateColor (255, 255, 0));

#End Code
 
I was hoping it was possible to create a watchlist version of this study. Any feedback would be appreciated.

#CSR Buy/Sell Arrows with Short/Long Haul Filter Bubbles
#Developed 4-9-22 First Edition
#Modified by C. Ricks to show direction arrows only (Large Yellow Arrows Up/Down)

declare upper;

input atrreversal = 2.0;#Hint atrreversal: Turn down for more entries, up for less entries. Purple signal indicates low point reversal and close approaching Kijun. Orange signal indicates the price is crossing the Kijun. Green signal indicates the low of the candle holds over the Kijun. Red signal means reversal at a high point.
def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_down);
signaldown.setdefaultcolor (CreateColor (255, 255, 0));



plot signalrevBot = !isNaN(EIL);
signalrevBot.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_up);
signalrevBot.setdefaultcolor (CreateColor (255, 255, 0));

#End Code

Forum threads that are preceded with the Repaints prefix are repainting indicators.
Yes. They repaint.
No. They cannot be made to not repaint.
read more: https://usethinkscript.com/threads/answers-to-commonly-asked-questions.6006/#post-57833

FYI: No. Repainters cannot be backtested! Nor can they be used accurately in Scans, Watchlists, Conditional Orders because they repaint.

Lastly, Schwab limits the amount of resources available in scans, watchlists, and conditional orders. This script and all other zigzag, high-low study's requirements exceeds the maximum resources available.
Meaning, most repainters is too complicated for use in any of the ToS widgets. They can only be used to plot on the chart.
 
@csricksdds
I am using an indicator from ThinkScript called AsGoodAsItGets_LowerSquareHistogram1.

The coding indicates the vertical bars are colored RED GREEN.

signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);

signaldown.DefineColor("signaldown", Color.RED);

Signalrevbot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);

signalrevBot.DefineColor("signalrevBot", Color.GREEN);

When I apply the indicator to a chart the RED bars displays as Light Blue and the GREEN bars display as Pink. Is there a fix for this? This is consistent over all 4 monitors

1753202762711.png
 
Last edited by a moderator:
@csricksdds
I am using an indicator from ThinkScript called AsGoodAsItGets_LowerSquareHistogram1.

The coding indicates the vertical bars are colored RED GREEN.

signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);

signaldown.DefineColor("signaldown", Color.RED);

Signalrevbot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);

signalrevBot.DefineColor("signalrevBot", Color.GREEN);

When I apply the indicator to a chart the RED bars displays as Light Blue and the GREEN bars display as Pink. Is there a fix for this? This is consistent over all 4 monitors

View attachment 25248

Fix vertical bars turning pink and cyan. This seems to be a common problem.
A search has resulted in many answers. See if one of these works for you:
https://usethinkscript.com/threads/vip-trading-potential-score.21060/#post-153383
https://usethinkscript.com/threads/...ing-with-thinkorswim.20844/page-3#post-154460
https://usethinkscript.com/threads/...-scalping-with-thinkorswim.20844/#post-152322
https://usethinkscript.com/threads/...riday-in-thinkorswim.20235/page-3#post-150988
https://usethinkscript.com/threads/...t-up-for-thinkorswim.13902/page-4#post-136421
 
Last edited:
Several have asked if there is a way to make the vertical line edition of this indicator thicker, but of course there is not. I would like them thicker as well. In addition to using my upper vertical lines I made a lower Histogram to more easily catch the eye. Even though this indicator will repaint it has been the most accurate indicator I use. I typically day trade the SPY and/or QQQs on a 5 min. Daily Chart, although this is AsGoodAsItGets on most stocks or ETFs you trade.
yrLt6k0.png


Here is the code:
Ruby:
# AsGoodAsItGets Lower Indicator
#CSR Buy/Sell Arrows with Short/Long Bubbles
#Developed 4-23-23 First Edition 8-23-22 Revised
#Updated 3/16/24 by C. Ricks

declare lower;

input atrreversal = 2.0;

def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signaldown.DefineColor("signaldown", Color.Red);
AddVerticalLine(!isNAN(EIH),"SHORT", color.red,curve.long_dash);

plot signalrevBot = !isNaN(EIL);

Signalrevbot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signalrevBot.DefineColor("signalrevBot", Color.GREEN);
AddVerticalLine(!isNAN(EIL),"LONG", color.Green,curve.long_dash);

##End Code
Hi @csricksdds This AGAIG lower indicator working out very well for me on daily chart, thanks a lot for providing this setup. I go long on RED histogram and exit on cyan. Wondering how does this strategy works for you? Is there any additional information on ZigZagHighLow? please advise. Thank you!
 
Last edited:
Hi @csricksdds This AGAIG lower indicator working out very well for me on daily chart, thanks a lot for providing this setup. I go long on RED histogram and exit on cyan. Wondering how does this strategy works for you? Is there any additional information on ZigZagHighLow? please advise. Thank you!
I use it every day...thanks
 
This is an alternative to using vertical lines/histograms and may also be moved up to main Chart:

1755016476029.png


Code:
# !!! REPAINTS !!!

declare lower;

input atrreversal = 2.0;
input Cloud = yes;

def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

def signaldown = !IsNaN(EIH);
AddVerticalLine(!IsNaN(EIH), "SHORT", Color.RED, Curve.LONG_DASH);

def signalrevBot = !IsNaN(EIL);
AddVerticalLine(!IsNaN(EIL), "LONG", Color.GREEN, Curve.LONG_DASH);

def trend = if signalrevBot then 1 else if signaldown then 0 else trend[1];
def pTrend = trend;

def hiLevel = if !pTrend >= pTrend then Double.POSITIVE_INFINITY else Double.NEGATIVE_INFINITY;
AddCloud(if Cloud and -hiLevel then -hiLevel else Double.NaN, hiLevel, Color.GREEN, Color.RED);
 
Last edited:
Looks amazing for options trading.

.

I made substantial improvements!!!!!!!!!!

I added labels that tell you how many shares you can purchase with your budget at the plot lines.

I added Long & Short profit labels that tell you how much money you'll make if you buy with your budget at the bullish plot line, and how much money you would have made by shorting with your budget on the bearish plot line.


I also made the plot lines say what price they're at.

http://tos.mx/!Mho7uhTb

Code:
# AsGoodAsItGets Lower Indicator
# CSR Buy/Sell Arrows with Short/Long Bubbles
# Developed 4-23-23 First Edition 8-23-22 Revised
# Updated 3/16/24 by C. Ricks
# Enhanced to continuously display profit labels for both buy and sell signals
# and to show companion labels for the starting prices of shorting and longing

declare lower;

input atrreversal = 2.0;
input sharePurchaseBudget = 5000; # Adjusted your budget to $5000
input showProfitLabels = yes; # Toggle the display of profit labels

def priceh = MovingAverage(AverageType.EXPONENTIAL, high, 5);
def pricel = MovingAverage(AverageType.EXPONENTIAL, low, 5);

def EIL = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastL;
def EIH = ZigZagHighLow("price h" = priceh, "price l" = pricel, "percentage reversal" = .01, "absolute reversal" = .05, "atr length" = 5, "atr reversal" = atrreversal).lastH;

plot signaldown = !isNAN(EIH);
signaldown.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signaldown.SetDefaultColor(Color.white);
AddVerticalLine(!isNAN(EIH),"SHORT @ " + AsDollars(priceh), Color.white, Curve.firm);
AddLabel(!isNAN(EIH) and showProfitLabels, "SHORT Signal Price: " + AsDollars(priceh), Color.WHITE);

plot signalrevBot = !isNaN(EIL);
signalrevBot.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
signalrevBot.SetDefaultColor(Color.cyan);
AddVerticalLine(!isNAN(EIL),"LONG @ " + AsDollars(pricel), Color.cyan, Curve.FIRM);
AddLabel(!isNAN(EIL) and showProfitLabels, "LONG Signal Price: " + AsDollars(pricel), Color.CYAN);

# Detect signal appearances to control profit calculations
def newBuySignal = Crosses(!IsNaN(EIL), 0.5, CrossingDirection.ABOVE);
def newSellSignal = Crosses(!IsNaN(EIH), 0.5, CrossingDirection.ABOVE);

def lastBuyPrice = if newBuySignal then pricel else lastBuyPrice[1];
def lastSellPrice = if newSellSignal then priceh else lastSellPrice[1];
def lastCoverPrice = if newBuySignal then pricel else lastCoverPrice[1];

# Calculate potential profits and update continuously
def sharesToShort = Round(sharePurchaseBudget / lastSellPrice);
def sharesToBuy = Round(sharePurchaseBudget / lastBuyPrice);

# Correcting the short profit calculation based on new entry and exit points
def shortEntryPrice = if newSellSignal then lastSellPrice else shortEntryPrice[1];
def shortExitPrice = if newBuySignal then lastCoverPrice else shortExitPrice[1];
def shortProfit = (shortEntryPrice - shortExitPrice) * sharesToShort;
def updatedShortProfit = if newBuySignal then shortProfit else updatedShortProfit[1]; # Update profit only on exit signal

# Adding Long Entry and Exit Prices, and Long Profit Calculation
def longEntryPrice = lastBuyPrice;
def longExitPrice = if newSellSignal then lastSellPrice else longExitPrice[1];
def longProfit = (longExitPrice - longEntryPrice) * sharesToBuy;
def updatedLongProfit = if newSellSignal then longProfit else updatedLongProfit[1]; # Update profit only on exit signal

# Corrected Short Profit display based on entry at signaldown and exit at signalrevBot
AddLabel(showProfitLabels, "Short Entry Price: " + AsDollars(shortEntryPrice) + ", Exit Price: " + AsDollars(shortExitPrice), Color.WHITE);
AddLabel(yes, "Shares to short @ GO-Short plot: " + sharesToShort + " shares", Color.WHITE);
AddLabel(showProfitLabels, "Short - Profit: " + AsDollars(updatedShortProfit), if updatedShortProfit > 0 then Color.white else Color.RED);

# Adding Labels for Long Position
AddLabel(showProfitLabels, "Long Entry Price: " + AsDollars(longEntryPrice) + ", Exit Price: " + AsDollars(longExitPrice), Color.CYAN);
AddLabel(yes, "Shares to Buy @ Go-Long plot: " + sharesToBuy + " shares", Color.CYAN);
AddLabel(showProfitLabels, "Long - Profit: " + AsDollars(updatedLongProfit), if updatedLongProfit > 0 then Color.CYAN else Color.RED);
Thanks for the additional functionality and substantial improvements you did here. NICE!!

I have been using the original and wanted a little more visibility when the changes happen. On the upper, I added Bubbles at the change indication. On the lower I also added the Label coding below.

Code:
input label = yes;
def condition = signalrevbot;
Script BarsSince{
Input Condition = No;

def Count = If Condition then 0 else Count[1] + 1;
plot BarsSince = Count;
}

Plot X = BarsSince(signalrevbot);
addlabel(label,"signalrevbot " + x + " bars ago", color.dark_green);

Plot Z = BarsSince(signaldown);
addlabel(label,"signaldown " + z + " bars ago", color.red);


# The lines below were a test to see if I could get a single "label" line vs the two lines above. Testing my # skills of cobbling together a desired result using, I think it was Halcyon's coding. It appears to work.
# so the add label lines above can be removed, if desired, or just hidden via the Input option.

addlabel(yes,if X < Z then "signalrevbot " + x + " bars ago" else if Z < X then "signaldown " + z + " bars ago" else "?", if (x < z and x <= 5) then color.blue else if (x < z and x > 5) then color.dark_green else if z < x then color.dark_gray else color.red);
 
Last edited by a moderator:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
528 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top