[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] From a new user



PureBytes Links

Trading Reference Links

HI... you can use this for this momment
copy/paste in indicator builder

/* ADX */
MaxGraph = 6;
/* Line + 25 */
Graph4 = 25;
Graph4Style=4+4;

Graph2 = PDI(14);
Graph1 = MDI(14);
Graph0 = ADX(14);
Graph2Style = Graph1Style = 1;
Graph0Style = 5;
Graph1Color = 5;
Graph2Color = 8;
Graph0Color = 7;
Title=Name() + " - Yelow +PDI" + WriteVal( Graph2 )+ ", Red -MDI" +
WriteVal( Graph1 )+
", Blue ADX" + WriteVal( Graph0 );


----- Original Message -----
From: <sloughbridge@xxxx>



> Hi all,
>
> I just found AmiBroker, and I like what I've seen. I've explored a
> bit, and read the docs but have a couple of questions.
>
> Is there no way to show which indicator lines are which by coloring
> the 'legend' on its chart. It is difficult to interpret 3 MAs or
> ADX/DI+/DI- etc. without seeing on the chart which color goes with
> which line. Most programs would have the name of the indicator line
> written in its line-color on the chart. If there is a way to have it
> show this way, could someone let me know?
>
> And also regarding the Real Time version... will it show multiple
> streaming charts, and can I use my RT streaming data from Datek as
> the source?
>
> Thanks for any help!
>