Page 1847 of 2170

Re: MT4 Indicator requests and ideas

Posted: Mon May 01, 2023 5:41 am
by Chickenspicy
Any chance on replacing the emas with femas & jurik? With option to select each one seperately?
T3 might be a good option also
Thank you in advance!

Re: Shved Supply and Demand unique identifier request

Posted: Mon May 01, 2023 1:56 pm
by BeatlemaniaSA
mrtools wrote: Mon May 01, 2023 4:22 am Don't have any idea how to do that since it is using global variables. Have you tried maybe changing

Code: Select all

extern string sup_name               = "Sup";
extern string res_name               = "Res";
extern string test_name              = "Retests";
those names for every instance of the indicator used?
Unfortunately, that does not work. Bummer :(

Re: MT4 Indicator requests and ideas

Posted: Tue May 02, 2023 12:48 am
by Gethsemane
mrtools wrote: Mon May 01, 2023 3:54 am Posted a version here
Looking good with a setting of 34 on 15m, useful for determining trend.
Image

Re: MT4 Indicator requests and ideas

Posted: Tue May 02, 2023 9:10 pm
by Woodyz
viewtopic.php?p=1295510143#p1295510143
Has this post from BeatlemaniaSA ever been addressed, does anyone know?

Re: MT4 Indicator requests and ideas

Posted: Wed May 03, 2023 5:09 am
by Chickenspicy
May Mrtools please make it possible to have the amplitude in decimal points? 0.5 1.5
thank you!

Re: MT4 Indicator requests and ideas

Posted: Wed May 03, 2023 6:05 am
by mrtools
Chickenspicy wrote: Wed May 03, 2023 5:09 am May Mrtools please make it possible to have the amplitude in decimal points? 0.5 1.5
thank you!
Try now.

Re: MT4 Indicator requests and ideas

Posted: Wed May 03, 2023 6:24 am
by Chickenspicy
mrtools wrote: Wed May 03, 2023 6:05 am Try now.
above 1 it is fine
will it not function below that? it disappears then

Re: MT4 Indicator requests and ideas

Posted: Wed May 03, 2023 6:34 am
by mrtools
Chickenspicy wrote: Wed May 03, 2023 6:24 am above 1 it is fine
will it not function below that? it disappears then
Don't know.

Re: MT4 Indicator requests and ideas

Posted: Wed May 03, 2023 3:24 pm
by Xronos__
Chickenspicy wrote: Wed May 03, 2023 6:24 am above 1 it is fine
will it not function below that? it disappears then
Amplitude is period thats why it was defined as integer,
makes no differenece its definition as double ,
1,9 should print similar to 2.0 but is not ,
insteed 1.9 is identical to 1.0 because 1.9 is casted to int (trunacted to 1), when used at

Code: Select all

iLowest(NULL,0,MODE_LOW,Amplitude,....
iHighest(NULL,0,MODE_HIGH,Amplitude,...
iMA(NULL,0,Amplitude,...
0.5 will be 0,
0 period=nothing to print

Re: MT4 Indicator requests and ideas

Posted: Thu May 04, 2023 6:32 am
by whiplashtm
Hi, this indicator is based on Arnaud Legoux Moving Average (an ALMA oscillator with bands). I find it quite useful for my trading system. But I were hoping if there were a chance if any of the awesome coders of forex-station could help me make the oscillator with a signal-line (with all the averages) as showed on the picture. I hope this is doable as the ALMA is quite known on this forum.


The only code i have for this particular indicator is (from tradingview):


The ex4 file is attached if someone finds this indicator useful.

Warmest regards
whiplashTM