Home Technical Indicator Post

Unlocking the 3Parabolic System: A Must-Try Indicator for MetaTrader 5

Attachments
554.zip (2.75 KB, Download 0 times)

The 3Parabolic System is a game-changer for traders looking to enhance their trading strategy. This nifty indicator generates signals through alerts and colored dots right on your chart, making it super easy to spot trading opportunities.

So, how does it work? The 3Parabolic System compares signals from three different versions of the Parabolic SAR indicator, each set to different timeframes: junior (your chart timeframe), middle, and senior.

In this setup, the senior and middle timeframes are used to track trend signals, while the junior timeframe focuses on identifying trend reversals. For instance, if the parabolic indicators are trending upwards on the senior and middle charts and are situated below the current price, while the junior chart shows a shift from above to below the price, you’ve got yourself a buy signal. The same logic applies for sell signals.

3Parabolic System

Indicator Input Parameters:

//+----------------------------------------------+
//| Indicator Input Parameters                  |
//+----------------------------------------------+
input uint AlertCount=0;          // Number of submitted alerts
input uint SignalBar=1;           // Signal bar index, 0 is the current bar
//---- Current timeframe iSAR indicator parameters
input double Junior_Step=0.02;    // Junior iSAR step
input double Junior_Maximum=0.2;  // Junior iSAR maximum
//---- Middle timeframe iSAR indicator parameters
input ENUM_TIMEFRAMES Middle_TimeFrame=PERIOD_H1; // Middle iSAR chart period
input double Middle_Step=0.02;    // Middle iSAR step
input double Middle_Maximum=0.2;  // Middle iSAR maximum
//---- Senior timeframe iSAR indicator parameters
input ENUM_TIMEFRAMES Senior_TimeFrame=PERIOD_H12; // Senior iSAR chart period
input double Senior_Step=0.02;    // Senior iSAR step
input double Senior_Maximum=0.2;  // Senior iSAR maximum

Related Posts

Comments (0)