Mimicking "Power X Strategy" by Markus Heitkoetter

Status
Not open for further replies.

BenTen's Watchlist + Setup + Trade Recaps

Get access to Ben's watchlist, swing trading strategy, ThinkorSwim setup, and trade examples.

Learn more

Yes Please a scan would be awesome
Hi Guys - I added two new plots at the bottom of the script called "UpTrend" and "DownTrend". You can use them in a scan on any timeframe and look for when they are "True". Just tested both conditions and I'm getting correct hits. I updated the "FVO_RSI_Stochastic_Combined_Cloud_Request_SCAN" and added SCAN at the end to denote that it includes the SCAN variables. You can use this script for both purposes, just uncheck the plots when you have the indicator on a chart. Test it out and let me know if there're any issues.


EDIT
Code has been updated, see link below

https://usethinkscript.com/threads/rsm-indicator-for-thinkorswim.5407/
 
Last edited:
Hi Guys - I added two new plots at the bottom of the script called "UpTrend" and "DownTrend". You can use them in a scan on any timeframe and look for when they are "True". Just tested both conditions and I'm getting correct hits. I updated the "FVO_RSI_Stochastic_Combined_Cloud_Request_SCAN" and added SCAN at the end to denote that it includes the SCAN variables. You can use this script for both purposes, just uncheck the plots when you have the indicator on a chart. Test it out and let me know if there're any issues.


Code:
#START OF RSI/Stochastic/MACD Confluence combo for ThinkOrSwim
#
#CHANGELOG
# 2020.10.30 V1.1 @cos251 - Added UpTrend and DownTrend variables that can be used for a SCAN
# 2020.10.27 V1.0 @cos251 - Added RSI, StochasticSlow and MACD to same indicator; this will plot only RSI and Stochastic but also
#                   - calculates MACD; Will shade the lower plot area of the following conditions are met
#                    Shade GREEN = RSI > 50 and SlowK > 50 and (macd)Value > (macd)Avg
#                    Shade RED = RSI < 50 and SlowK < 50 and (macd)Value < (macd)Avg
#                  
#REQUIREMENTS - RSI Set to 7, EXPONENTIAL
#               Stoch Slow 5(not14) and 3 WILDERS
#               MACD 12,26,9 WEIGHTED
#
#
#CREDITS
# requesed by "@Joseph Patrick 18"
#
#LINK
# https://rockwell-files.s3.amazonaws.com/PXCompanionGuide2ndEd_cover.pdf
# Markus Heikoetter who is the author of the Power X Strategy
# https://usethinkscript.com/threads/mimicking-power-x-strategy-by-markus-heitkoetter.4283/
#
#USAGE
#



declare lower;

################################################################
##########                 RSI                         #########
################################################################
input paintBars = yes;
input lengthRSI = 7;
input over_BoughtRSI = 70;
input over_SoldRSI = 30;
input price = close;
input averageTypeRSI = AverageType.EXPONENTIAL;
input showBreakoutSignalsRSI = no;
input showRSI_ob_os = no;

def NetChgAvg = MovingAverage(averageTypeRSI, price - price[1], lengthRSI);
def TotChgAvg = MovingAverage(averageTypeRSI, AbsValue(price - price[1]), lengthRSI);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;

plot RSI = 50 * (ChgRatio + 1);
plot OverSold_RSI = if showRSI_ob_os then over_SoldRSI else Double.NaN;
plot OverBought_RSI =if showRSI_ob_os then over_BoughtRSI else Double.NaN;
plot UpSignalRSI = if RSI crosses above OverSold_RSI then OverSold_RSI else Double.NaN;
plot DownSignalRSI = if RSI crosses below OverBought_RSI then OverBought_RSI else Double.NaN;
UpSignalRSI.SetHiding(!showBreakoutSignalsRSI);
DownSignalRSI.SetHiding(!showBreakoutSignalsRSI);
RSI.DefineColor("OverBought", GetColor(5));
RSI.DefineColor("Normal", Color.YELLOW);
RSI.DefineColor("OverSold", GetColor(1));
#RSI.AssignValueColor(if RSI > rsiover_Bought then RSI.Color("OverBought") else if RSI < rsiover_Sold then RSI.Color("OverSold") else RSI.Color("Normal"));
OverSold_RSI.SetDefaultColor(GetColor(8));
OverBought_RSI.SetDefaultColor(GetColor(8));
UpSignalRSI.SetDefaultColor(Color.UPTICK);
UpSignalRSI.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
DownSignalRSI.SetDefaultColor(Color.DOWNTICK);
DownSignalRSI.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);


################################################################
##########                 Stochastic Slow             #########
################################################################
input over_boughtSt = 80;
input over_soldSt = 20;
input KPeriod = 5;
input DPeriod = 3;
input priceH = high;
input priceL = low;
input priceC = close;
input averageTypeStoch = AverageType.WILDERS;
input showBreakoutSignalsStoch = {default "No", "On SlowK", "On SlowD", "On SlowK & SlowD"};
input showStochastic_ob_os = no;


plot SlowK = reference StochasticFull(over_boughtSt, over_soldSt, KPeriod, DPeriod, priceH, priceL, priceC, 3, averageTypeStoch).FullK;
plot SlowD = reference StochasticFull(over_boughtSt, over_soldSt, KPeriod, DPeriod, priceH, priceL, priceC, 3, averageTypeStoch).FullD;
SlowD.Hide();
plot OverBoughtSt = if showStochastic_ob_os then over_boughtSt else Double.NaN;
plot OverSoldSt = if showStochastic_ob_os then over_soldSt else Double.NaN;

def upK = SlowK crosses above OverSoldSt;
def upD = SlowD crosses above OverSoldSt;
def downK = SlowK crosses below OverBoughtSt;
def downD = SlowD crosses below OverBoughtSt;

plot UpSignalSt;
plot DownSignalSt;
switch (showBreakoutSignalsStoch) {
case "No":
    UpSignalSt = Double.NaN;
    DownSignalSt = Double.NaN;
case "On SlowK":
    UpSignalSt = if upK then OverSoldSt else Double.NaN;
    DownSignalSt = if downK then OverBoughtSt else Double.NaN;
case "On SlowD":
    UpSignalSt = if upD then OverSoldSt else Double.NaN;
    DownSignalSt = if downD then OverBoughtSt else Double.NaN;
case "On SlowK & SlowD":
    UpSignalSt = if upK or upD then OverSoldSt else Double.NaN;
    DownSignalSt = if downK or downD then OverBoughtSt else Double.NaN;
}
UpSignalSt.SetHiding(showBreakoutSignalsStoch == showBreakoutSignalsStoch."No");
DownSignalSt.SetHiding(showBreakoutSignalsStoch == showBreakoutSignalsStoch."No");
SlowK.SetDefaultColor(Color.LIGHT_GREEN);
SlowD.SetDefaultColor(Color.DARK_ORANGE);
OverBoughtSt.SetDefaultColor(GetColor(1));
OverSoldSt.SetDefaultColor(GetColor(1));
UpSignalSt.SetDefaultColor(Color.UPTICK);
UpSignalSt.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
DownSignalSt.SetDefaultColor(Color.DOWNTICK);
DownSignalSt.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);


#################################################################
#MACD Calculation
input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;
input averageTypeMACD = AverageType.WEIGHTED;
input showBreakoutSignalsMACD = no;
def Value = MovingAverage(averageTypeMACD, close, fastLength) - MovingAverage(averageTypeMACD, close, slowLength);
def Avg = MovingAverage(averageTypeMACD, Value, MACDLength);


# Check Each Signal for over 50 and MACD for Value > Avg
def rsiGreen = if RSI >= 50 then 1 else Double.NaN;
def rsiRed = if RSI < 50 then 1 else Double.NaN;
def stochGreen = if SlowK >= 50 then 1 else Double.NaN;
def stochRed = if SlowK < 50 then 1 else Double.NaN;
def macdGreen = if Value > Avg then 1 else Double.NaN;
def macdRed = if Value < Avg then 1 else Double.NaN;
def green = if rsiGreen and stochGreen and macdGreen then 1 else Double.NaN;
def red = if rsiRed and stochRed and macdRed then 1 else Double.NaN;


#RSI Color Assignment per requeset
RSI.AssignValueColor(if RSI >= 50 and SlowK >= 50 and Value > Avg then Color.GREEN else if RSI < 50 and SlowK < 50 and Value < Avg then Color.RED else Color.DARK_GRAY);

#AssignPriceColor
AssignPriceColor(if paintBars and RSI >= 50 and SlowK >= 50 and Value > Avg then Color.GREEN else if paintBars and RSI < 50 and SlowK < 50 and Value < Avg then Color.RED else if paintBars then Color.DARK_GRAY else Color.Current);

#################################################################
############  Shade areas based on criteria; adjust as needed  ##
#################################################################
AddCloud(if rsiGreen and stochGreen and macdGreen then Double.POSITIVE_INFINITY else Double.NaN, if rsiGreen and stochGreen then Double.NEGATIVE_INFINITY else Double.NaN, Color.LIGHT_Green);
AddCloud(if rsiRed and stochRed and macdRed then Double.POSITIVE_INFINITY else Double.NaN, if rsiRed and stochRed then Double.NEGATIVE_INFINITY else Double.NaN, Color.LIGHT_RED);
#AddCloud(if rsiGreen and stochGreen and macdGreen then 100 else Double.NaN, if rsiGreen and stochGreen then 0 else #Double.NaN, Color.LIGHT_Green);
#AddCloud(if rsiRed and stochRed and macdRed then 100 else Double.NaN, if rsiRed and stochRed then 0 else Double.NaN, #Color.LIGHT_RED);


plot fifty = 50;
fifty.SetDefaultColor(Color.RED);


#################################################################
############          SCAN Variables                    #########
#################################################################
plot UpTrend = if RSI >= 50 and SlowK >= 50 and Value > Avg then 1 else Double.NaN;
plot DownTrend = if RSI < 50 and SlowK < 50 and Value < Avg then 1 else Double.NaN;
Thanks Cos for all of your help I appreciate your time and knowledge!!
 
I have to say, this strategy is starting to grow on me......looks good!

8xjTKwX.png
 
I have to say, this strategy is starting to grow on me......looks good!

8xjTKwX.png
Me too have been pretty successful all day today...been using gap up and gain up scans and watched as they reversed back down and had a pretty good day! I hope it helps everyone out especially you! Thanks again!
 
If anyone is interested here are some FREE (YAKBRO on Twitter) INDICATORS from his website:

Volume Dynamic: http://tos.mx/156eUyb
Volume Study: http://tos.mx/JqBHPVj
HH HL: http://tos.mx/MFdbVlT
Shading MA: http://tos.mx/xe4vYIs
Trading SIM: http://tos.mx/3ocC2n1
Trading Hour: http://tos.mx/twcIAOn
VWAP Signals: http://tos.mx/POzM5uJ
Rainbow Cloud: http://tos.mx/YlPl33a
SSR: http://tos.mx/zZd7mC1
Intraday VWAP: http://tos.mx/7WYbQaQ
OR HILO with RS V2: http://tos.mx/Bhz9UOs
Engulf Candle: http://tos.mx/GDlFMjZ
Dynamic Close: http://tos.mx/9Ck7gpt
POS CALC: http://tos.mx/tbfssAr
Daily Open PDC: http://tos.mx/GVwqUa0
DAILY ATR: http://tos.mx/m3ywzbl
AVWAP: http://tos.mx/bp01FL2
2 Day HILO: http://tos.mx/vcKkgfw
 
Last edited:
Hi Guys - I added two new plots at the bottom of the script called "UpTrend" and "DownTrend". You can use them in a scan on any timeframe and look for when they are "True". Just tested both conditions and I'm getting correct hits. I updated the "FVO_RSI_Stochastic_Combined_Cloud_Request_SCAN" and added SCAN at the end to denote that it includes the SCAN variables. You can use this script for both purposes, just uncheck the plots when you have the indicator on a chart. Test it out and let me know if there're any issues.


Code:
#START OF RSI/Stochastic/MACD Confluence combo for ThinkOrSwim
#
#CHANGELOG
# 2020.10.30 V1.1 @cos251 - Added UpTrend and DownTrend variables that can be used for a SCAN
# 2020.10.27 V1.0 @cos251 - Added RSI, StochasticSlow and MACD to same indicator; this will plot only RSI and Stochastic but also
#                   - calculates MACD; Will shade the lower plot area of the following conditions are met
#                    Shade GREEN = RSI > 50 and SlowK > 50 and (macd)Value > (macd)Avg
#                    Shade RED = RSI < 50 and SlowK < 50 and (macd)Value < (macd)Avg
#                  
#REQUIREMENTS - RSI Set to 7, EXPONENTIAL
#               Stoch Slow 5(not14) and 3 WILDERS
#               MACD 12,26,9 WEIGHTED
#
#
#CREDITS
# requesed by "@Joseph Patrick 18"
#
#LINK
# https://rockwell-files.s3.amazonaws.com/PXCompanionGuide2ndEd_cover.pdf
# Markus Heikoetter who is the author of the Power X Strategy
# https://usethinkscript.com/threads/mimicking-power-x-strategy-by-markus-heitkoetter.4283/
#
#USAGE
#



declare lower;

################################################################
##########                 RSI                         #########
################################################################
input paintBars = yes;
input lengthRSI = 7;
input over_BoughtRSI = 70;
input over_SoldRSI = 30;
input price = close;
input averageTypeRSI = AverageType.EXPONENTIAL;
input showBreakoutSignalsRSI = no;
input showRSI_ob_os = no;

def NetChgAvg = MovingAverage(averageTypeRSI, price - price[1], lengthRSI);
def TotChgAvg = MovingAverage(averageTypeRSI, AbsValue(price - price[1]), lengthRSI);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;

plot RSI = 50 * (ChgRatio + 1);
plot OverSold_RSI = if showRSI_ob_os then over_SoldRSI else Double.NaN;
plot OverBought_RSI =if showRSI_ob_os then over_BoughtRSI else Double.NaN;
plot UpSignalRSI = if RSI crosses above OverSold_RSI then OverSold_RSI else Double.NaN;
plot DownSignalRSI = if RSI crosses below OverBought_RSI then OverBought_RSI else Double.NaN;
UpSignalRSI.SetHiding(!showBreakoutSignalsRSI);
DownSignalRSI.SetHiding(!showBreakoutSignalsRSI);
RSI.DefineColor("OverBought", GetColor(5));
RSI.DefineColor("Normal", Color.YELLOW);
RSI.DefineColor("OverSold", GetColor(1));
#RSI.AssignValueColor(if RSI > rsiover_Bought then RSI.Color("OverBought") else if RSI < rsiover_Sold then RSI.Color("OverSold") else RSI.Color("Normal"));
OverSold_RSI.SetDefaultColor(GetColor(8));
OverBought_RSI.SetDefaultColor(GetColor(8));
UpSignalRSI.SetDefaultColor(Color.UPTICK);
UpSignalRSI.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
DownSignalRSI.SetDefaultColor(Color.DOWNTICK);
DownSignalRSI.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);


################################################################
##########                 Stochastic Slow             #########
################################################################
input over_boughtSt = 80;
input over_soldSt = 20;
input KPeriod = 5;
input DPeriod = 3;
input priceH = high;
input priceL = low;
input priceC = close;
input averageTypeStoch = AverageType.WILDERS;
input showBreakoutSignalsStoch = {default "No", "On SlowK", "On SlowD", "On SlowK & SlowD"};
input showStochastic_ob_os = no;


plot SlowK = reference StochasticFull(over_boughtSt, over_soldSt, KPeriod, DPeriod, priceH, priceL, priceC, 3, averageTypeStoch).FullK;
plot SlowD = reference StochasticFull(over_boughtSt, over_soldSt, KPeriod, DPeriod, priceH, priceL, priceC, 3, averageTypeStoch).FullD;
SlowD.Hide();
plot OverBoughtSt = if showStochastic_ob_os then over_boughtSt else Double.NaN;
plot OverSoldSt = if showStochastic_ob_os then over_soldSt else Double.NaN;

def upK = SlowK crosses above OverSoldSt;
def upD = SlowD crosses above OverSoldSt;
def downK = SlowK crosses below OverBoughtSt;
def downD = SlowD crosses below OverBoughtSt;

plot UpSignalSt;
plot DownSignalSt;
switch (showBreakoutSignalsStoch) {
case "No":
    UpSignalSt = Double.NaN;
    DownSignalSt = Double.NaN;
case "On SlowK":
    UpSignalSt = if upK then OverSoldSt else Double.NaN;
    DownSignalSt = if downK then OverBoughtSt else Double.NaN;
case "On SlowD":
    UpSignalSt = if upD then OverSoldSt else Double.NaN;
    DownSignalSt = if downD then OverBoughtSt else Double.NaN;
case "On SlowK & SlowD":
    UpSignalSt = if upK or upD then OverSoldSt else Double.NaN;
    DownSignalSt = if downK or downD then OverBoughtSt else Double.NaN;
}
UpSignalSt.SetHiding(showBreakoutSignalsStoch == showBreakoutSignalsStoch."No");
DownSignalSt.SetHiding(showBreakoutSignalsStoch == showBreakoutSignalsStoch."No");
SlowK.SetDefaultColor(Color.LIGHT_GREEN);
SlowD.SetDefaultColor(Color.DARK_ORANGE);
OverBoughtSt.SetDefaultColor(GetColor(1));
OverSoldSt.SetDefaultColor(GetColor(1));
UpSignalSt.SetDefaultColor(Color.UPTICK);
UpSignalSt.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
DownSignalSt.SetDefaultColor(Color.DOWNTICK);
DownSignalSt.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);


#################################################################
#MACD Calculation
input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;
input averageTypeMACD = AverageType.WEIGHTED;
input showBreakoutSignalsMACD = no;
def Value = MovingAverage(averageTypeMACD, close, fastLength) - MovingAverage(averageTypeMACD, close, slowLength);
def Avg = MovingAverage(averageTypeMACD, Value, MACDLength);


# Check Each Signal for over 50 and MACD for Value > Avg
def rsiGreen = if RSI >= 50 then 1 else Double.NaN;
def rsiRed = if RSI < 50 then 1 else Double.NaN;
def stochGreen = if SlowK >= 50 then 1 else Double.NaN;
def stochRed = if SlowK < 50 then 1 else Double.NaN;
def macdGreen = if Value > Avg then 1 else Double.NaN;
def macdRed = if Value < Avg then 1 else Double.NaN;
def green = if rsiGreen and stochGreen and macdGreen then 1 else Double.NaN;
def red = if rsiRed and stochRed and macdRed then 1 else Double.NaN;


#RSI Color Assignment per requeset
RSI.AssignValueColor(if RSI >= 50 and SlowK >= 50 and Value > Avg then Color.GREEN else if RSI < 50 and SlowK < 50 and Value < Avg then Color.RED else Color.DARK_GRAY);

#AssignPriceColor
AssignPriceColor(if paintBars and RSI >= 50 and SlowK >= 50 and Value > Avg then Color.GREEN else if paintBars and RSI < 50 and SlowK < 50 and Value < Avg then Color.RED else if paintBars then Color.DARK_GRAY else Color.Current);

#################################################################
############  Shade areas based on criteria; adjust as needed  ##
#################################################################
AddCloud(if rsiGreen and stochGreen and macdGreen then Double.POSITIVE_INFINITY else Double.NaN, if rsiGreen and stochGreen then Double.NEGATIVE_INFINITY else Double.NaN, Color.LIGHT_Green);
AddCloud(if rsiRed and stochRed and macdRed then Double.POSITIVE_INFINITY else Double.NaN, if rsiRed and stochRed then Double.NEGATIVE_INFINITY else Double.NaN, Color.LIGHT_RED);
#AddCloud(if rsiGreen and stochGreen and macdGreen then 100 else Double.NaN, if rsiGreen and stochGreen then 0 else #Double.NaN, Color.LIGHT_Green);
#AddCloud(if rsiRed and stochRed and macdRed then 100 else Double.NaN, if rsiRed and stochRed then 0 else Double.NaN, #Color.LIGHT_RED);


plot fifty = 50;
fifty.SetDefaultColor(Color.RED);


#################################################################
############          SCAN Variables                    #########
#################################################################
plot UpTrend = if RSI >= 50 and SlowK >= 50 and Value > Avg then 1 else Double.NaN;
plot DownTrend = if RSI < 50 and SlowK < 50 and Value < Avg then 1 else Double.NaN;
Hi Cos, Thanks again for all of your help! I loaded the scan and set it to "True" in the conditions.

Dumb question, with all of the plots that I can choose from for example "Overbought RSI" I know that this will show stocks that are above the 70 line on the RSI that might reverse action....

1) The Slow K would you plot that condition when it crosses the Slow D instead of setting it to "True"?
2) The RSI how what parameters would I use for that scan?

Don't mean to sound stupid just wanted to make sure I understood everything. All the other plot parameters I get.
And again thank you so much for taking time to help us!
 
Hi @Joseph Patrick 18 - yes. You can use any of the plots (SlowK, SlowD, RSI) and build your scan to match your criteria. If you want to find stocks that have the RSI crossing above 20 or below 80. For the SlowK and SlowD, it may be easier to build the condition into the script then just scan for the true conditions. Let me know if you want me to add any other scan conditions.

Good feedback @Vince Field I wonder if this is something that can be added to the CSA for further trend confirmation (or maybe it already has these components).
 
Hi @Joseph Patrick 18 - yes. You can use any of the plots (SlowK, SlowD, RSI) and build your scan to match your criteria. If you want to find stocks that have the RSI crossing above 20 or below 80. For the SlowK and SlowD, it may be easier to build the condition into the script then just scan for the true conditions. Let me know if you want me to add any other scan conditions.
Thanks Cos appreciate it!
 
The CSA indicator gives a buy signal sometimes significantly before the power X indicator. For example, CSA will go green on the second bar into a nice uptrend whereas X will go green on the fourth or fifth bar. CSA is a bit late to get you out of the trade when it reverses, compared to X, but another indicator can be used for the exits.
 
The CSA indicator gives a buy signal sometimes significantly before the power X indicator. For example, CSA will go green on the second bar into a nice uptrend whereas X will go green on the fourth or fifth bar. CSA is a bit late to get you out of the trade when it reverses, compared to X, but another indicator can be used for the exits.
Hi Vince...quick question...which modules do you have setup from the CSA comparable to Power X Strat? Thanks!
 
Friends, could someone explain how this indicator is used in a scan? I am a newbie and don't understand how to apply it when looking for stocks.
Hi @mveloso - you can go to the scan section and add a study. Select the indicator (with whatever name you saved it too) and use the following plots to scan when they are "True". You can scan against a watchlist or all stocks, or any other list you like.

Code:
#################################################################
############          SCAN Variables                    #########
#################################################################
plot UpTrend = if RSI >= 50 and SlowK >= 50 and Value > Avg then 1 else Double.NaN;
plot DownTrend = if RSI < 50 and SlowK < 50 and Value < Avg then 1 else Double.NaN;
 
Status
Not open for further replies.

New Indicator: Buy the Dip

Check out our Buy the Dip indicator and see how it can help you find profitable swing trading ideas. Scanner, watchlist columns, and add-ons are included.

Download the indicator

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
439 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