PureBytes Links
Trading Reference Links
|
4)
> I'm having trouble calculating the day's high in a formula -- is
> there an existing function for that?
Assuming you are using intraday
// Example 5. get previous Day High when working on intraday data
yesterdayhigh = TimeFrameGetPrice( "H", inDaily, -1 ) ;
todays high price
todayhigh = TimeFrameGetPrice( "H", inDaily, 0 ) ;
If EOD
todayhigh = h;
yesterdayhigh =ref(h,-1);
On Thu, 10 Mar 2005 00:38:26 -0000, Lesmond V <ebsn247@xxxxxxxx> wrote:
>
>
> 1)
> > Can I remove an indicator from a chart without editing the formula?
>
> a) if it's an indicator in the separate pane:
>
> r-click anywhere on the indicator pane - click on "close"
>
> b) if it's and indicator overlayed on the main graph (like Bollinger
> Bands):
>
> r-click very close to the top edge of the chart - click on "delete"
>
> 3)
> > I'd like to get the chart to start at, say, 9:30, even though it's
> > been collecting data from IB earlier than that.
>
> Alt+F - database settings - intraday settings
>
> 2)
> > Can the Y-axis be set to display (bond) prices in 32nds or 64ths?
>
> Let someone else answer this
>
> 4)
> > I'm having trouble calculating the day's high in a formula -- is
> > there an existing function for that?
>
> Let someone else answer this
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
>
> Yahoo! Groups Links
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|