PureBytes Links
Trading Reference Links
|
Hi William,
Thanks for the reply.
Please bear with me. I'm not getting the same results as you.
Unfortunately, I'm running into another situation getting $INDU data
from eSignal plugin. Only 5 days of data loads when I click on the
symbol. (this is unrelated issue that I will investigate later.)
When I check IBM on 12/5/03, the inbuild 25 day MA gives me $89.7892.
When I use your code below to plot 25 day MA using TimeFrameSet
function, it yields $89.7284 (~ $0.06 disparity)
Would you please verify if you get same results for IBM. If I'm
doing something silly, please let me know.
Thank you.
Regards,
CB
--- In amibroker@xxxxxxxxxxxxxxx, "William Peters"
<williampeters@xxxx> wrote:
> Hi,
>
> Well, i've just tried it myself and its working ok. If you can
paste the
> code when you have a question like this it would help a lot.
> Here is the code used. If you open the DOW for 13th Nov 2003 you
should get
> 9752.59 for both the standard price chart with the inbuild 25 SMA
indicator
> and this custom indicator using the 5min bars.
>
> TimeFrameSet( inDaily );
> MA25Day = MA( C, 25 ); // 25 Day MA
> TimeFrameRestore();
> MA25Day = TimeFrameExpand( MA25Day, inDaily );
> Plot( C, "Price", colorGreen, styleCandle );
> Plot( MA25Day, "MA25Day", colorGreen, styleLine );
> GraphXSpace = 4;
>
>
> Regards,
> William Peters
> www.amitools.com
>
>
>
>
> -----Original Message-----
> From: cjbrennan123 [mailto:cjbrennan123@x...]
> Sent: Friday December 5, 2003 11:58 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] TimeFrameSet( ) question ;
>
>
>
> Hello:
>
> In the "Preferences" window, I specify a 10, 13, and 25 day simple
> MA in the 'Moving Averages' section.
>
> When viewing 5-MINUTE data, I use the TimeFrameSet () function to
> plot 25 bar simple MA based on 25 DAILY bars, but this plot does
not
> render the same numbers as what Amibroker automatically plots in
the
> price window based on my preferences settings for Moving Averages.
> The price difference between the two plots is several cents
> difference.
>
> Can you help me interpret the disparity?
>
> Thanks,
> CB
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|