PureBytes Links
Trading Reference Links
|
Hello,
Has anyone coded the following pivot point indicator formula so that
it shows the pivot points for tomorrow on the graph (without
tomorrows candlestick), and have the guru commentary give the pivot
point values, support and resistance (for tomorrow of course).
Thanks
Jim
--- In amibroker@xxxxxxxxxxxxxxx, "Greg" <gregbean@xxxx> wrote:
> Hi MR,
>
> Are these the kind of pivot points you are talking about? If so,
just cut and paste into indicator builder.
>
> Greg
>
> // Pivot , Support, Resistance //
>
> P = (H + L + C)/3 ; // Pivot point
> R1 = 2*P - L ; // resistance 1
>
> S1 = 2*P - H ; // Support 1
>
> R2 = (P -S1) + R1 ; // Resistance 2
>
> S2 = P - (R1- S1) ; // Support 2
>
> Plot(R2,"R2",4,styleSwingDots+styleStaircase);
>
> Plot(R1,"R1",4,styleSwingDots+styleStaircase);
>
> Plot(p,"Pivot",3,styleSwingDots+styleStaircase);
>
> Plot(S1,"S1",5,styleSwingDots+styleStaircase);
>
> Plot(S2,"S2",5,styleSwingDots+styleStaircase);
>
> Plot(C,"Close",1,64);
>
>
>
>
>
>
>
> ----- Original Message -----
> From: mroman59
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, December 18, 2003 11:05 PM
> Subject: [amibroker] piviot points on graph - programming guru
help
>
>
> hello everyone,
>
> has anyone thought of or tried to use the standard formula for
pivot
> point calculations for stocks and then take these values to
create a
> graph, like the built in or custom indicators so one could look
at
> these values at eod or intraday, in Amibroker of course? If so,
> could you please help with code. If you are interested and need
the
> formualas for these pivot point calculations, let me know and i
will
> send them to you.
>
> Thanks all
> MR
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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
>
>
>
> --------------------------------------------------------------------
----------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
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
------------------------ 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
---------------------------------------------------------------------~->
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/
|