@mrtools
Gratefull.

Dearest Mrtools
Hi guysshinnosuke wrote: Tue Apr 24, 2018 5:48 pm to mrtools,mladen, mntiwana and all other master that i can't mention here.
i've found a screen shot of a strategy that i think it's a good one. but i can't find what are the indicators, is there anyone here maybe know this trading system? kind a share please. thank you.
scalping.jpg
best regards.
Help what ?
It is normal for "EP SSA" - lower number of barsdenicalcio wrote: Tue Apr 24, 2018 6:54 pm
my pc is having problems when I use more than one indicator td cb ssa ep norm index
Hi Mrtools..any feedback on this, thanks again.Deez wrote: Mon Apr 23, 2018 8:56 pm Hi MrTools, i Have a big favor to ask if you will accommodate me,
Please could you change the way this indi arrows and alerts :
Will it be possible to arrow and alert on specific OB/OS level breaks as in the pic and not on color change?
Your help will be greatly appreciated.
@mrtools @mntiwana @mladen,ashetty033 wrote: Fri Feb 23, 2018 8:45 pm Mrtools Sir,
Could you please create an indicator for the following condition :
Custom Range Breakout
Selects the no. of bars given as input..
Calculates high and low(range) of the selected no. of bars and plots it for the selected period..
Here is the code in Amibroker:Broker_2018-02-23_15-08-30.pngCode: Select all
_SECTION_BEGIN(" CRB "); nd=Hour() != Ref(Hour(), -1); x = 5; crbh = ValueWhen(nd,Ref(HHV(H,x),-1)); crbl = ValueWhen(nd,Ref(LLV(L,x),-1)); Plot(crbh,"",colorBlack,stylenoreScale|styleNoLabel); Plot(crbL,"",colorBlack,stylenoreScale|styleNoLabel); PlotOHLC(crbl,crbh,crbl,crbl,"",ParamColor("CRB col",colorPaleBlue),stylenoreScale|styleNoLabel|styleCloud,0,0,0,-6); _SECTION_END();