I tried to use your updated indicator.mrtools wrote:Thu May 06, 2021 2:44 am Added t3 to the mix.
Doesn't work - the popup says: you used a renamed indicator.
Didn't rename it, though.
I tried to use your updated indicator.mrtools wrote:Thu May 06, 2021 2:44 am Added t3 to the mix.
Compiled it again, this seems to work sometimes.josi wrote:Sun May 09, 2021 12:52 am I tried to use your updated indicator.
Doesn't work - the popup says: you used a renamed indicator.
Didn't rename it, though.
bsat wrote:Sat Apr 10, 2021 7:35 pm I ONLY HONOR THE ARROWS AFTER CROSS OVER, GREAT SUCCESS THOUGH STILL BACK TESTING.
HI MrTools,mrtools wrote:Tue Apr 13, 2021 4:32 am Mtf added.
Made the 3 color histo version.Deez wrote:Wed May 12, 2021 9:50 pm HI MrTools,
Could you please make a 3 color histo version of this indi when you have the time.
Thanks.
Is it possible to put the arrows in seperate buffers? That would be great. Many thanks for your work.mrtools wrote:Thu May 06, 2021 2:44 am Added t3 to the mix.
Why would you want the arrows in separate buffers, sorry not understanding?Behold97 wrote:Wed May 19, 2021 2:23 am Is it possible to put the arrows in seperate buffers? That would be great. Many thanks for your work.
As I understand the "rules" for the indicator correct, the signal gets triggered when each color respectively breaks threw the golden line. But there are never 2 sell/buy signals in a row. Seems to me that there always has to be a buy signal after a sell signal.mrtools wrote:Wed May 19, 2021 2:42 am Why would you want the arrows in separate buffers, sorry not understanding?
On this I have upVal = buffer 2, dnVal = buffer 3, and ItLevel = buffer 4 . If upVal > ItLevel = buy and if dnVal > ItLev = sell. Also you can use the trend buffer which is buffer 5 and call it similar to thisBehold97 wrote:Thu May 20, 2021 8:38 pm As I understand the "rules" for the indicator correct, the signal gets triggered when each color respectively breaks threw the golden line. But there are never 2 sell/buy signals in a row. Seems to me that there always has to be a buy signal after a sell signal.
Now correct me if iam wrong but thats how I understand it from looking at the indicator and its thread.
I want to backtest the indicator and its capabilities.
Sadly I dont know how to implement that special rule that the same signal cant be twice after each other. Having the arrows in buffers (if sell signal = true then buffer = 1)would make it easy, but i would understand if it is to much work to do. Iam using fxdreema to backtest it.
Thanks for your response!
Code: Select all
#define _doNothing 0
#define _doBuy 1
#define _doSell 2
void OnTick()
{
int doWhat = _doNothing;
double hull_trend_current = iCustom(NULL,0,"Adaptive - jurik filter (mtf + alerts + fl's)",PERIOD_CURRENT,Length,Phase,Double,AtrLength,AtrPhase,AtrDouble,Price,Filter,FilterType,LevelType,MinMaxPeriod,KATR,LevelUp,LevelDn,ColorOn,12,BarToUse);
double hull_trend_previous = iCustom(NULL,0,"Adaptive - jurik filter (mtf + alerts + fl's)",PERIOD_CURRENT,Length,Phase,Double,AtrLength,AtrPhase,AtrDouble,Price,Filter,FilterType,LevelType,MinMaxPeriod,KATR,LevelUp,LevelDn,ColorOn,12,BarToUse+1);
if (hull_trend_current!=hull_trend_previous)
if (hull_trend_current==1)
doWhat = _doBuy;
else doWhat = _doSell;
Added mtf to this one instead.traderokey wrote:Wed Jun 02, 2021 1:28 am Hi Mrtools,
Could you please add multi-time frame capability to these two indicators.
Thank you.
Itrend averages (alerts).ex4
glitch index averages.ex4