PSAR Multi-Timeframe

Check this chart atttached.

A multi currency version..i simple a version where you have multiple instruments on the same dashboard
 

Attachments

  • takepropips-donchian-trend-pro-mt5-screen-7838.png
    takepropips-donchian-trend-pro-mt5-screen-7838.png
    253.7 KB · Views: 20
Dear admin, what values do I need to enter to get the control panel of the indicator to the upper right corner?
There is no corner selection parameter, but you can move the panel to the desired position, by changing the Horizontal spacing for the control panel and Vertical spacing for the control panel input parameters.
 
Greetings everyone
How can one automate this mtf psar indicator. I really appreciate some ideas.. thanks
 
It's already rather automated. What exactly do you mean by automating it further?
Ok .. i like to know the set buffer number for each alert generated.. Above , Below and uncertain... I want to use this alert with an ea to execute each alert automatically on my mt4 instantly.. thanks.. opening buy n sell trade automatically following the set buffer numbers
 
Last edited:
Ok .. i like to know the set buffer number for each alert generated.. Above , Below and uncertain... I want to use this alert with an ea to execute each alert automatically on my mt4 instantly.. thanks.. opening buy n sell trade automatically following the set buffer numbers
There is only one buffer - it contains the current signal value: +1 for a bullish signal, -1 for a bearish one, and 0 for uncertain. The bullish and bearish signals show up only when all timeframes align. Only the latest bar in the buffer is updated.

On the other hand, why would you need to load PSAR MTF in your EA? You can load standard PSAR indicators from the timeframes you need and work with their values.
 
There is only one buffer - it contains the current signal value: +1 for a bullish signal, -1 for a bearish one, and 0 for uncertain. The bullish and bearish signals show up only when all timeframes align. Only the latest bar in the buffer is updated.

On the other hand, why would you need to load PSAR MTF in your EA? You can load standard PSAR indicators from the timeframes you need and work with their values.
Thanks for the info.. please throw more lights on the alternative solution to automate standard psar. I purposely want to align 2 time frame before entering a trade... using an ea indicator to place it automatically
 
Last edited:
Thanks for the info.. please throw more lights on the alternative solution to automate standard psar. I purposely want to align 2 time frame before entering a trade... using an ea indicator to place it automatically
When loading PSAR in an indicator with iPSAR, you can specify its timeframe. So, you can get two values one for the first timeframe and another one for the second timeframe.
 
Please can some one help to give me guide on how to customise default time frame settings for multiple timeframe psar to just 15 minutes and 1 hour enabled as default settings...other timeframe disabled in default settings... because the ea i intend to use in combination reads all timeframe enabled in default settings.. whereas i want it to pick only M15 n 1 hr time-frames in default settings...when signal is released..i urgently need this help..thanks
 
Please some one to give guide on how to customise default time frame settings for multiple timeframe psar to just 15 minutes and 1 hour enabled as default settings...other timeframe disabled in default settings... because the ea i intend to use in combination reads all timeframe enabled in default settings.. whereas i want it to pick only M15 n 1 hr time-frames in default settings...when signal is released..i urgently need this help..
When loading PSAR in an indicator with iPSAR, you can specify its timeframe. So, you can get two values one for the first timeframe and another one for the second timeframe.
Thanks but i don't really get it clearly..am not a programmer but i have the idea unfortunately I can't make it happen...pls let let me have this ipsar download file
 
Last edited:
Please can some one help to give me guide on how to customise default time frame settings for multiple timeframe psar to just 15 minutes and 1 hour enabled as default settings...other timeframe disabled in default settings... because the ea i intend to use in combination reads all timeframe enabled in default settings.. whereas i want it to pick only M15 n 1 hr time-frames in default settings...when signal is released..i urgently need this help..thanks
When you are calling iCustom on it, the first three parameters of the function are Symbol, Timeframe, and Indicator Name - I suppose you got them correctly, right? Then follow the input parameters for PSAR MTF, starting from Comment_1 (which you can pass as empty), then PSARStep, then PSARMax, then CandleToCheck, then Comment_2b, and then follow 9 bool parameters that enable or disable specific timeframes. So, if you want it to check only M15 and H1, you compose the iCustom call like this:
MQL4:
iCustom(Symbol(), Period(), "MQLTA MT4 PSAR Multi-Timeframe", "", 0.02, 0.2, 1, "", false, false, true, false, true, false, false, false, false, "", false, false, false, false, "", false, 20, 20, "MQLTA-PSARMTF", 0, 0);

However, if you are comfortable working with iCustom, what's the problem using two iPSAR calls, which is much simpler?