Simple Coding Help - No Promise.

Hi,
I need to set grid values to ymin as low and ymax as high as under:

SetChartOptions(0,chartShowArrows|chartShowDates|chartWrapTitle, gridflags =chartGridMiddle, ymin = L, ymax = H);

how this can be done? Please help.


Thanks and regards
 

sibu3168

Well-Known Member
Can smebody help me in creating this afl?

Concept is relating to rangebar.

Since range bar is time independent, so I want a tick counter which shows when a new rangebar will start. That means if I use a 250R (250 tick range bar) or anything else, then it should count either tick from 1 to 250 or 250 to 1 and etc. so that one can know in advance when the new bar will start.

Anyone's help in this regard will be highly appreciated.

Can someone suggest me a software which has this fascility.

Thanks in advance.
 
Amit Bhai linked me here.Great Coders stay here :)
I need a small help-

I want upper pane as 15tf and lower pane as 3/5tf...so that I can monitor it from a long distance also...that too with my right eye closed :D

Like this-
http://postimg.org/image/4vbn3zieh/

Simpler way (zero programming needed) is to open two chart windows. Then Load 15 min chart in any pane of in first chart window and 5 min in any pane of the second chart window.

Therefore, tile both of 'em.
 
----------------------------------------
 
Hi,
I need to set grid values to ymin as low and ymax as high as under:

SetChartOptions(0,chartShowArrows|chartShowDates|chartWrapTitle, gridflags =chartGridMiddle, ymin = L, ymax = H);

how this can be done? Please help.

Thanks and regards
Solution is present in the amibroker help manual. Cut-pasted and highlighted for you here.

ymin, ymax - (new in 5.07) these parameters specify Y-axis minimum and maximum values for custom scaling. If you specify any values that meet the condition ymin < ymax, AmiBroker will turn OFF automatic scaling and use specified min/max values for Y scale. Note that Mode argument controls when these settings are applied (0 - only when new chart is created, 1 - always), when modes 2 and 3 are used - scaling is not changed.
 

ravi2126

Well-Known Member
pls help,
i m new to amibroker software want to know
how i can get live tick by tick
i just transfer EOD data from oct 2012 till today...
pls guide...
 
Last edited:
Hi,

I am not aware of the programming, as being a commerce graduate.

Can anyone in group help me in creating my strategy. Same to be created on Default chart, where Entry to be done at SUPERTREND +OBV and exit at Parabolic SAR.

Regards
 
need help...

is there any way to PLOT rectangle like this ( whenever price bar go out of the rectangle area , rectangle will end plot-ing there )

like this ..
 
Last edited:
need help...

is there any way to PLOT rectangle like this ( whenever price bar go out of the rectangle area , rectangle will end plot-ing there )

like this ..

Yes, Approach is you need to define pair of line arrays from the starting and ending bar. Once you have the pair, you need to use plotohlc with style as styleArea.


_SECTION_BEGIN("Loud Cloud");
h1 = HHV(H, 10);
x1 = h1 == H;
l1 = LLV(L, 10);
x2 = l1 == L;
b1 = SelectedValue(ValueWhen(x1 OR x2, BarIndex()));
b2 = SelectedValue(BarIndex() + 10);
ls1 = LineArray(b1,SelectedValue(h1),b2,SelectedValue(h1),0);
ls2 = LineArray(b1,SelectedValue(l1),b2,SelectedValue(l1),0);
PlotOHLC(ls1,ls1,ls2,ls2,"", colorPink, styleCloud | styleArea);
_SECTION_END();
 

Similar threads