PureBytes Links
Trading Reference Links
|
cas:
OK, I tried that. I understand what you are doing - but there are three issues. First, the price axis is totally confused - all values are like "0.0083" for ZB (futures), when set to decimal, but blank when set to "1/32nd", for example. That's one reason I tried the negative of price - so the axis was readable.
Second, inverting (1/price) is probably a geometric distortion for any values that range over a large percentage of the price range.
Third, it's not necessary to override O, H, L and C. Just use PlotOHLC(). Unless other formulas depend on O,H, L and C, I suppose...
Thanks for the suggestion.
- Bill
--- In amibroker@xxxxxxxxxxxxxxx, cas soni <soni67c@xxx> wrote:
>
> ........
> please try this..
> //---------------------------------------------------------
>
> DF = -0.0003;
> TC = C;
> IC = 1 / ( C - DF );
> IO = 1 / ( O - DF );
> IL = 1 / ( H - DF );
> IH = 1 / ( L - DF );
>
> C = IC;
> O = IO;
> H = IH;
> L = IL;
> Plot( C, " ", colorGrey40, styleCandle );
> Title = Name() + ": " + "Last = " + TC;
>
>
>
> --- On Thu, 24/9/09, Carl Vanhaesendonck <carl.van@xxx> wrote:
>
> From: Carl Vanhaesendonck <carl.van@xxx>
> Subject: [amibroker] Re:Inverted (upside-down) chart display
> To: amibroker@xxxxxxxxxxxxxxx
> Date: Thursday, 24 September, 2009, 10:42 PM
>
>
>
> What about turning your monitor upside down
> ?
>
>
>
> ;-)
>
>
>
> Carl
>
>
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|