PureBytes Links
Trading Reference Links
|
Hi.
I am wanting to change the
export js file to export the data in yyyymmdd ohlcv format as at present the
date format
does not add a zero on single digit numbers
ie 97/1/1 instead of 97/01/01 . I have a point and figure
graphing software which will
not work without the zeros.
also here is a search afl file for breakouts from
consolidation i am at present using ; keep up thje good work tomasz hope
it
is working out for you .
ken.
/* afl file tradingbands finding a breakout*/;
/*bollingerbands*/;
x2 = bbandtop(h, 21,.1);/*exp. with std dev values*/;
x3 = bbandbot(l,21, 2);
x=hhv(x2,21);
y=hhv(x3,21);
x4=ref(hhv(h,21),-1);
buy=x4<x and x4>y and c>=x;/* can include a filter like v>100000
or volume*close>100000 */;
sell=c<l;
maxgraph = 4;
graph0 = x2;
graph1 = close;
graph3 =x3;
|