Page 1847 of 2042

Re: Shved Supply and Demand unique identifier request

Posted: Mon May 01, 2023 4:22 am
by mrtools
BeatlemaniaSA wrote: Sun Apr 30, 2023 4:57 pm Hi @mrtools :),

Okay, If it is not possible to add a button to the shved supply and demand indicator can you add a unique identifier option so that I'll be able to add more than one instance of the indicator?

Currently, it does not have it. The other supply indicator mentioned in my previous post allows that but I truly don't like the way it draws the zones on the chart i.e. either a solid zone or a line :D. The shved supply and demand indicator allows me to have various line styles (solid, line, dot, dash, etc.) which then gives me the option to see which TF's are represented on the chart (by the different line styles) without cluttering up the screen.

The additional benefit of the various line styles is that I will be able to see when there is a confluence of either supply or demand zones i.e. a 15min/30min zone (dot line style) within a 4H or daily zone (dash/solid line style) :)

Warmest regards,
BeatlemaniaSA
Image
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?

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