Page 4 of 8

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 8:35 pm
by Deez
Tried my hand at copy/paste coding. :D

Dashboard for Monster-Breakout indi.
Checks if all 4 rows of dots appear then gives signal.
Forgive me if there are errors.

PS. dont change name of monster indi as Dashboard uses that name.

Give it a try. :thumbup:

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 9:18 pm
by josi
Deez wrote: Thu Jan 13, 2022 8:35 pm
just a short question about the indie:
in the inputs, what does 12 stand for (ma1;ma2;ma3;ma4;)?
It looks as if it refers to MA_period: and that would be 12 for all instances.
And as MA_method seems to be 3 it refers to an LWMA.
But - if this is true - what does period stand for (period1;period2;period3;period4;)?
Number of candles?
Strange - maybe somebody can answer that.

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 10:32 pm
by andrei-1
josi wrote: Thu Jan 13, 2022 9:18 pm
It all started with a single period setting. The indicator starts the calculation with (high+low)/2. But it was interesting for me to slip the smoothed data there, so Ma appeared. It looks interesting at the same time with different periods 1, 2, 3, 4 (the author uses 12 and 50). I kept the proportions 12, 50, 200, 800. I do not know how to squeeze win 100% out of this. It looks beautiful, you can sell it on the Market :) .
LWMA Simply so :eh:

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 10:44 pm
by andrei-1
Redraws the entire candle according to the latest data. Fixed an old bug.

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 11:38 pm
by josi
andrei-1 wrote: Thu Jan 13, 2022 10:32 pm
sadly; I don't really understand your answer.
Basically my question was:
What does period (in the inputs) stand for (period1;period2;period3;period4;)?

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Thu Jan 13, 2022 11:49 pm
by andrei-1
josi wrote: Thu Jan 13, 2022 11:38 pm period1;period2;period3;period4;?
Don't know. :eh: The higher the value, the fewer arrows. (there was a bug fixed in 0.1).

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Wed Feb 23, 2022 4:31 am
by yisrael
A fun experiment....I just turned the 12 period of monster breakout to 50 period...then in the code I changed
ci=Close[ i]
TO
ci =iMA(Symbol(),0,200,0,1,PRICE_CLOSE,i)
Looks dope...but i don't know...what it translates to!!!

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Wed Feb 23, 2022 7:34 am
by andrei-1
yisrael wrote: Wed Feb 23, 2022 4:31 am
Magic :D

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Wed Feb 23, 2022 2:31 pm
by Msquared
Can someone add alerts for the original indicator?

Re: MONSTER BREAKOUT BY YISRAEL

Posted: Wed Feb 23, 2022 7:01 pm
by yisrael
andrei-1 wrote: Wed Feb 23, 2022 7:34 am Magic :D
Well when I see green in the indicator it indicates going long...the 200 Ema is above the price so it indicates to go short....so the correct signal is the second.
So I also changed the
ci>hi ? 1 : ci<li ? -1 :0
To
ci>hi ? -1 : ci<li ? 1 :0
This indicator it can catches some big trends..even if it catches them late...gives some false signal,it give few signals,but the cool thing about it is avoids whipsaw cause in those situations
The Ema is between the higher and lower resistance...hence moving sideways.

It was fun while it lasted!!!
That was a real magical experiment!!!
:sweat: