PureBytes Links
Trading Reference Links
|
Yes I did/do realize the candles must also use the high, low and open
values in addition to the close I'm using. However, I incorrectly
assumed that these values would be read without me having to write
them into the code.
How do I OVERWRITE the High, Low and Open variables? I hesitate to
try this on my own as I've grown tired of restoring my databases
after other blunders I've made.
Regards,
Brett
--- In amibroker@xxxx, "Tomasz Janeczko" <tj@xxxx> wrote:
> Hello Brett,
>
> If you are using graphstype=64 you have to know that this style
> uses indirectly High, Low and Open arrays. This is so because
> candlesticks need 4 arrays to draw (not only one)
> So it is not enough to write:
> graph0 = something;
> graph0style = 64;
>
> but you have to OVERWRITE the High, Low and Open variables.
> (the safest way is to do this at the end of the formula otherwise
built in functions
> will operate on overwritten values)
>
> Best regards,
> Tomasz Janeczko
> ===============
> AmiBroker - the comprehensive share manager.
> http://www.amibroker.com
>
> ----- Original Message -----
> From: brett_f1@xxxx
> To: amibroker@xxxx
> Sent: Saturday, June 30, 2001 6:45 PM
> Subject: [amibroker] Candlestick graphstyle problem
>
>
> I'm using geaphstyle=64 with some other graphs to overlay some
other
> indicators with and I'm having a problem with the end result of
the
> display. The candles appear with an outline color and long thin
tops
> from the body to the top of the chart. Has anyone else
experienced
> this type of problem and been able to fix it?
>
> Brett
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
|