Page 130 of 158

Re: Trend Indicators for MT4

Posted: Thu Sep 22, 2022 7:03 am
by PumbaPLS
VMA :think:

Re: Trend Indicators for MT4

Posted: Thu Sep 22, 2022 10:59 am
by loxx
chickensword wrote: Thu Sep 22, 2022 3:25 am i think this would be a good addition to tradingview

dont know how it catches price so good but it does
Image
idk if this is correct, the code in that MT4 isn't the best, but this is probably the best we'll get on tradingview. ill brush this up and then publish it soon.

Yeah, that indicator is extremely bad code, here's why. These two lines of code shift SMA backward and then its painted forward, this is a 12 bar repaint

double MAUP1 = iMA(NULL, 0, MAPeriod, -MoveShift, MODE_SMA, PRICE_HIGH, i);
double MADN1 = iMA(NULL, 0, MAPeriod, -MoveShift, MODE_SMA, PRICE_LOW, i);

the signals could still be valid, but whoever coded this got this way wrong. you just can't do this. so the indicator in its drawing functions.

Re: Trend Indicators for MT4

Posted: Thu Sep 22, 2022 7:37 pm
by Chickenspicy
loxx wrote: Thu Sep 22, 2022 10:59 am idk if this is correct, the code in that MT4 isn't the best, but this is probably the best we'll get on tradingview. ill brush this up and then publish it soon.

Yeah, that indicator is extremely bad code, here's why. These two lines of code shift SMA backward and then its painted forward, this is a 12 bar repaint

double MAUP1 = iMA(NULL, 0, MAPeriod, -MoveShift, MODE_SMA, PRICE_HIGH, i);
double MADN1 = iMA(NULL, 0, MAPeriod, -MoveShift, MODE_SMA, PRICE_LOW, i);

the signals could still be valid, but whoever coded this got this way wrong. you just can't do this. so the indicator in its drawing functions.
Image
ahhhhhh i was deceiveeddd again

Re: Trend Indicators for MT4

Posted: Thu Sep 22, 2022 8:51 pm
by Chickenspicy
loxx wrote: Thu Sep 22, 2022 10:59 am
is this one any different?

Re: Trend Indicators for MT4

Posted: Thu Sep 22, 2022 8:56 pm
by Chickenspicy
ahh sucks to suck ahhhhhh ehyr
rest in pepperoni cant find the grailioni

Re: Trend Indicators for MT4

Posted: Fri Sep 23, 2022 6:03 am
by loxx
chickensword wrote: Thu Sep 22, 2022 8:56 pm ahh sucks to suck ahhhhhh ehyr
rest in pepperoni cant find the grailioni
Image
yeah, that one is still jacked up, its a repainter

Re: Trend Indicators for MT4

Posted: Fri Sep 23, 2022 6:13 am
by Chickenspicy
loxx wrote: Fri Sep 23, 2022 6:03 am yeah, that one is still jacked up, its a repainter
how about this macd momentum that was based off bbsqueeze
does it exist already there ?

Re: Trend Indicators for MT4

Posted: Mon Sep 26, 2022 9:33 am
by Chickenspicy
loxx wrote: Tue Sep 20, 2022 11:48 pm
hello again i have new idea but this time from TradingView to Mt4

this twin range finder is very accurate but i think it could be improved upon by coders with additional filtering

Re: Trend Indicators for MT4

Posted: Mon Sep 26, 2022 2:36 pm
by loxx
chickensword wrote: Mon Sep 26, 2022 9:33 am hello again i have new idea but this time from TradingView to Mt4

this twin range finder is very accurate but i think it could be improved upon by coders with additional filtering
Image
alright, sweet, ill check it out

Re: Trend Indicators for MT4

Posted: Wed Oct 05, 2022 2:53 am
by mrtools
sal wrote: Tue Oct 04, 2022 2:41 pm mr. tools
can you add an option in setting to filter dots when slope changes above and below zero level

for green dot ; bar should be above zero level
for red dot ; bar should be below zero level
see snap
Image
Filtered the slope arrows.