FINANCIAL CHRONICLE™
Dear Reader,

Registration with the Sri Lanka FINANCIAL CHRONICLE™️ would enable you to enjoy an array of other services such as Member Rankings, User Groups, Own Posts & Profile, Exclusive Research, Live Chat Box etc..

All information contained in this forum is subject to Disclaimer Notice published.


Thank You
FINANCIAL CHRONICLE™️
www.srilankachronicle.com


Join the forum, it's quick and easy

FINANCIAL CHRONICLE™
Dear Reader,

Registration with the Sri Lanka FINANCIAL CHRONICLE™️ would enable you to enjoy an array of other services such as Member Rankings, User Groups, Own Posts & Profile, Exclusive Research, Live Chat Box etc..

All information contained in this forum is subject to Disclaimer Notice published.


Thank You
FINANCIAL CHRONICLE™️
www.srilankachronicle.com
FINANCIAL CHRONICLE™
Would you like to react to this message? Create an account in a few clicks or log in to continue.
FINANCIAL CHRONICLE™

Encyclopedia of Latest news, reviews, discussions and analysis of stock market and investment opportunities in Sri Lanka

Latest topics

» LOLC FINANCE PLC (LOFC.N0000)
by SamJay1974 Yesterday at 3:04 pm

» ASPI to dip below 9000
by ResearchMan Yesterday at 10:54 am

» LCBF Future
by Beyondsenses Yesterday at 10:22 am

» Quarterly Earnings Results Update
by ResearchMan Thu Jun 01, 2023 2:01 pm

» Focus on Government controlled entities
by ResearchMan Thu Jun 01, 2023 1:56 pm

» RGEM. A real gem in the market
by Guest Thu Jun 01, 2023 11:07 am

» HOTEL AND TRAVEL SECTOR
by ErangaDS Wed May 31, 2023 9:07 am

» CSE HAIR CUT START?
by parasangaha Tue May 30, 2023 4:57 pm

» CENTRAL INDUSTRIES PLC (CIND.N0000)
by K.R Tue May 30, 2023 9:02 am

» Prime land Real Gem -Leader in property sector Most undervalue counter.
by Biggy Sat May 27, 2023 1:06 pm

» EXTERMINATORS PLC (EXT.N0000)
by ErangaDS Sat May 27, 2023 12:21 pm

» LOCAL DEBT STRUCTURE
by Beyondsenses Sat May 27, 2023 6:57 am

» JETWING SYMPHONY PLC (JETS.N0000)
by ErangaDS Thu May 25, 2023 9:18 am

» Sri Lanka cabinet approves incentives for Colombo Port City
by CSE1986 Tue May 23, 2023 10:53 am

» What led to Sri Lanka's default on its debt
by ChatGPT Mon May 22, 2023 7:21 am

» Sri Lanka's IMF Program Analysis
by ChatGPT Sat May 20, 2023 12:59 am

» IMF is going to make us all cry!i
by ChatGPT Sat May 20, 2023 12:57 am

» The Sri Lanka Economic Crisis and Its Impact on the Colombo Stock Market
by ChatGPT Fri May 19, 2023 8:33 pm

» Will CEYLON TOBACCO COMPANY PLC (CTC.N0000) pull out of Sri Lanka?
by Beyondsenses Thu May 18, 2023 6:50 am

» PEOPLE'S INSURANCE PLC (PINS.N0000)
by Ekanayake90 Wed May 17, 2023 7:36 pm

LISTED COMPANIES

Submit Post
Poll

US$ EXCHANGE RATE PREDICTION 2023

 
 
 
 
 
 
 

View results

ශ්‍රී ලංකා මූල්‍ය වංශකථාව - සිංහල
Submit Post


CONATCT US


Send your suggestions and comments

* - required fields

Read FINANCIAL CHRONICLE™ Disclaimer



EXPERT CHRONICLE™

MARKET CHAT


ECONOMIC CHRONICLE

GROSS DOMESTIC PRODUCT (GDP)



CHRONICLE™ YouTube

LATEST TWEETS

You are not connected. Please login or register

Pivot point indicator; developed by ZOOZZOO

4 posters

Reply to topic

Go down  Message [Page 1 of 1]

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

A pivot point indicator has been written by zoozzoo for DFN.

zoozzoo wrote:
i gave it a another attempt, this time you have to specify "Specific Time Period High, Specific Time Period Low and Specific Time Period Close" and then it will automatically generate pivot point, support levels and resistance levels for you. remember this is only for Specific Time Period it will not identify High, Low and Close automatically, you have to mention them manually.

to add to DFN,
tools>indicator builder>copy and paste the code>first click test icon(one forward arrow)>then click the double arrow>on upcoming window "Advanced tab">type "Short Name" as "PivotPoint">"Default insert window" choose "Same inner window as source.

hope you will use this with caution until few days, if you found any error let me know.

please feel free to use this script, no copyright


Code:
/* Pivot Point Generator By Zoozzoo */
/*
Pivot Point = [Specific Time Period High + Specific Time Period Low + Specific Time Period Close] / 3

Support Levels
 S1 = [Pivot Point * 2] - Specific Time Period High
 S2 = Pivot Point - Specific Time Period High + Specific Time Period Low
 S3 = S2 - Specific Time Period High + Specific Time Period Low

Resistance Levels
 R1 = [Pivot Point * 2] - Specific Time Period Low
 R2 = Pivot Point + Specific Time Period High - Specific Time Period Low
 R3 = R2 + Specific Time Period High - Specific Time Period Low
*/

/* Start my idea */
param double SpecificTimePeriodHigh = 0.0;
param double SpecificTimePeriodLow = 0.0;
param double SpecificTimePeriodClose = 0.0;
DataArray PP, S1, S2, S3, R1, R2, R3;

/* Pivot Point Define */
PP = ((SpecificTimePeriodHigh + SpecificTimePeriodLow + SpecificTimePeriodClose) / 3);

/* Support Levels Define */
S1 = ((PP * 2) - SpecificTimePeriodHigh);
S2 = (PP - SpecificTimePeriodHigh + SpecificTimePeriodLow);
S3 = (S2 - SpecificTimePeriodHigh + SpecificTimePeriodLow);

/* Resistance Levels Define */
R1 = ((PP * 2) - SpecificTimePeriodLow);
R2 = (PP + SpecificTimePeriodHigh - SpecificTimePeriodLow);
R3 = (R2 + SpecificTimePeriodHigh - SpecificTimePeriodLow);

plot (PP, Green, Dash, 2);

plot S1;
plot S2;
plot S3;

plot R1;
plot R2;
plot R3;

Pivot point indicator; developed by ZOOZZOO Pivot_11

http://forum.srilankaequity.com/t35978-mubasher-technology-in-a-market-manipulation-move-via-direct-fn-in-sri-lanka
Pivot point indicator is a essential tool of swing traders..
I think he'll develop this more in future. We should give him a big thank for zoozzoo, especially technical traders...!!!  Very Happy
If there're any other forum members who having such programming knowledge in DFN can contribute in this. And it'll be more easy for us for trading and develop this outdated DFN to such sophisticated level in near future with more sophisticated indicators... cheers

~ Invite for all programmers..... ~ Basketball



Last edited by NC on Wed Oct 01, 2014 6:26 pm; edited 1 time in total

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Pivot Points

Introduction

Pivots Points are significant levels chartists can use to determine directional movement, support and resistance. Pivot Points use the prior period's high, low and close to formulate future support and resistance. In this regard, Pivot Points are predictive or leading indicators. There are at least five different versions of Pivot Points. This article will focus on Standard Pivot Points, Demark Pivot Points and Fibonacci Pivot Points.

Pivot Points were originally used by floor traders to set key levels. Floor traders are the original day traders. They deal in a very fast moving environment with a short-term focus. At the beginning of the trading day, floor traders would look at the previous day's high, low and close to calculate a Pivot Point for the current trading day. With this Pivot Point as the base, further calculations were used to set support 1, support 2, resistance 1 and resistance 2. These levels would then be used to assist their trading throughout the day.

Time Frames

Pivot Points for 1, 5, 10 and 15 minute charts use the prior day's high, low and close. In other words, Pivot Points for today's intraday charts would be based solely on yesterday's high, low and close. Once Pivot Points are set, they do not change and remain in play throughout the day.

Conclusions

Pivot Points offer chartists a methodology to determine price direction and then set support and resistance levels. It usually starts with a cross of the Pivot Point. Sometimes the market starts above or below the Pivot Point. Support and resistance come into play after the crossover. While originally designed for floor traders, the concepts behind Pivot Points can be applied across various timeframes. As with all indicators, it is important to confirm Pivot Point signals with other aspects of technical analysis. A bearish candlestick reversal pattern could confirm a reversal at second resistance. Oversold RSI could confirm oversold conditions at second support. An upturn in MACD could be used to confirm a successful support test. On a final note, sometimes the second or third support/resistance levels are not seen on the chart. This is simply because their levels exceed the price scale on the right. In other words, they are off the chart

Classic pivot calculation

Pivot Point (P) = (High + Low + Close)/3

Support 1 (S1) = (P x 2) - High

Support 2 (S2) = P  -  (High  -  Low)

Resistance 1 (R1) = (P x 2) - Low

Resistance 2 (R2) = P + (High  -  Low)


Study more: http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:pivot_points

SHARK aka TAH

SHARK aka TAH
Expert
Expert

Welldone Zoozoo cheers

SHARK aka TAH

SHARK aka TAH
Expert
Expert

This is ASPI Chart with Zoozzo PP Indicator

Pivot point indicator; developed by ZOOZZOO Aspi10

Looks awesome zoozzo cheers

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

SHARK aka TAH wrote:This is ASPI Chart with Zoozzo PP Indicator

Pivot point indicator; developed by ZOOZZOO Aspi10

Looks awesome zoozzo cheers

Very Happy

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Any Programmers .... ????
Plz comment

zoozzoo


Manager - Equity Analytics
Manager - Equity Analytics

NC wrote:Any Programmers .... ????
Plz comment

may be they haven't seen this post yet Rolling Eyes Question Sleep

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Pivot Point - Woodie

I rearrange, Zoozzoo's classic pivots formulas in to woodies. Here's the code. (good for weekly analysis)

Code:
/* Pivot Point - Woodie Generator By Zoozzoo & NC*/
/*
Pivot Point = [Specific Time Period High + Specific Time Period Low + Specific Time Period Open + Specific Time Period Open] / 4

Support Levels
 S1 = [Pivot Point * 2] - Specific Time Period High
 S2 = Pivot Point - [Specific Time Period High + Specific Time Period Low]
 S3 = Specific Time Period Low - 2 * [Specific Time Period High - Pivot Point]
 S4 = Pivot Point - 3 * [Specific Time Period High - Specific Time Period Low]

Resistance Levels
 R1 = [Pivot Point * 2] - Specific Time Period Low
 R2 = Pivot Point + [Specific Time Period High - Specific Time Period Low]
 R3 = 2 * [Pivot Point - Specific Time Period Low] + Specific Time Period High
 R4 = 3 * [Specific Time Period High - Specific Time Period Low] + Pivot Point
*/

/* Start my idea */
param double SpecificTimePeriodOpen = 0.0;
param double SpecificTimePeriodHigh = 0.0;
param double SpecificTimePeriodLow = 0.0;
param double SpecificTimePeriodClose = 0.0;

DataArray PP, S1, S2, S3, S4, R1, R2, R3, R4;

/* Pivot Point Define */
PP = ((SpecificTimePeriodHigh + SpecificTimePeriodLow + SpecificTimePeriodOpen + SpecificTimePeriodOpen) / 4);

/* Support Levels Define */
S1 = ((PP * 2) - SpecificTimePeriodHigh);
S2 = (PP - SpecificTimePeriodHigh + SpecificTimePeriodLow);
S3 = (SpecificTimePeriodLow - 2*(SpecificTimePeriodHigh - PP));
S4 = (PP - 3*(SpecificTimePeriodHigh - SpecificTimePeriodLow));

/* Resistance Levels Define */
R1 = ((PP * 2) - SpecificTimePeriodLow);
R2 = (PP + SpecificTimePeriodHigh - SpecificTimePeriodLow);
R3 = (2*(PP - SpecificTimePeriodLow) + SpecificTimePeriodHigh);
R4 = (3*(SpecificTimePeriodHigh - SpecificTimePeriodLow) + PP);

plot (PP, Green, Dash, 2);

plot S1;
plot S2;
plot S3;
plot S4;

plot R1;
plot R2;
plot R3;
plot R4;

Here's an example of weekly pivots of woodie of LGL.X
Pivot point indicator; developed by ZOOZZOO Lglx-p10

So, now we can do readings easily... !!!
Very Happy cheers

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Pivot Point - Fibonacci

Rearrange of formulas of Zoozzoo's classical pivot in to Fibonacci Pivots.
Here's the code;
Code:
/* Pivot Point - Fibonacci Generator By Zoozzoo & NC */
/*
Pivot Point = [Specific Time Period High + Specific Time Period Low + Specific Time Period Close] / 3

Support Levels
 S1 = Pivot Point - (0.382*(Specific Time Period High - Specific Time Period Low))
 S2 = Pivot Point - (0.618*(Specific Time Period High - Specific Time Period Low))
 S3 = Pivot Point - (1*(Specific Time Period High - Specific Time Period Low))

Resistance Levels
 R1 = Pivot Point + (0.382*(Specific Time Period High - Specific Time Period Low))
 R2 = Pivot Point - (0.618*(Specific Time Period High - Specific Time Period Low))
 R3 = Pivot Point - (1*(Specific Time Period High - Specific Time Period Low))
*/

/* Start my idea */
param double SpecificTimePeriodHigh = 0.0;
param double SpecificTimePeriodLow = 0.0;
param double SpecificTimePeriodClose = 0.0;
DataArray PP, S1, S2, S3, R1, R2, R3;

/* Pivot Point Define */
PP = ((SpecificTimePeriodHigh + SpecificTimePeriodLow + SpecificTimePeriodClose) / 3);

/* Support Levels Define */
S1 = (PP - (0.382*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));
S2 = (PP - (0.618*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));
S3 = (PP - (1*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));

/* Resistance Levels Define */
R1 = (PP + (0.382*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));
R2 = (PP + (0.618*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));
R3 = (PP + (1*(SpecificTimePeriodHigh - SpecificTimePeriodLow)));

plot (PP, Green, Dash, 2);

plot S1;
plot S2;
plot S3;

plot R1;
plot R2;
plot R3;
 

Example of weekly fib-pivots of LGL.X
Pivot point indicator; developed by ZOOZZOO Lglx-p11

Monthly Fib-Pivots of LIOC.n
Pivot point indicator; developed by ZOOZZOO Lioc_p10

Very Happy cheers Hope these will ease our works, and raise our profits...

I'm not a programmer I just rearrange the formulas of Zoozzoos given codings..
So, again I request,
Is there any programmers in this forum, plz comment.. bounce

SHARK aka TAH

SHARK aka TAH
Expert
Expert

Thanks NC
Its good to indicate daily Pivots on ASI and S&P.. so lets continue the good works and continue the daily updates ..... in this same thread as a respect to Zoozzoo

Pivot point indicator; developed by ZOOZZOO Praising-the-lord-smiley-emoticon

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Hmmm... thats good..! I think he will contribute more in programming in future... Very Happy
@ zoozzoo take time and just give a try to automate as I said here, http://forum.srilankaequity.com/t35978p25-mubasher-technology-in-a-market-manipulation-move-via-direct-fn-in-sri-lanka and add label

zoozzoo


Manager - Equity Analytics
Manager - Equity Analytics

i accidentally discovered built-in "Supports" and "Resistance" level with “Pivot Point" calculater on DFN. hope you know about this. anyway if you don't know about this below image will guide.

Pivot point indicator; developed by ZOOZZOO Fd4r10

SHARK aka TAH

SHARK aka TAH
Expert
Expert

Thanks Zoozoo it works only intraday ....

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Pivot point indicator; developed by ZOOZZOO Asi10

Weekly Pivot of ASI:

R4 7,612.3
midpoint 7,545.4
R3 7,478.5
midpoint 7,460.4
R2 7,442.3
midpoint 7,417.9
R1 7,393.5
midpoint 7,375.4
PP 7,357.3
midpoint 7,332.9
S1 7,308.5
midpoint 7,290.4
S2 7,272.3
midpoint 7,247.9
S3 7,223.5
midpoint 7,162.9
S4 7,102.3

Current market is below the PP.
7200 is a critical point based on swing points..
Thanx zoozoo for intraday pivots. Very Happy  But, its only shows intraday, so feel not much useful  Sad

SHARK aka TAH

SHARK aka TAH
Expert
Expert

This is the Weekly Pivot Point as per Woodie Calculations.

Pivot point indicator; developed by ZOOZZOO Asi17

SHARK aka TAH

SHARK aka TAH
Expert
Expert

RES 1 =7447
RES 3 =7544
Pivot Point =7383
SUP 1 = 7289
SUP 2 =7292

Above for Week Starting 13.10.2014

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

NC wrote:Pivot point indicator; developed by ZOOZZOO Asi10

Weekly Pivot of ASI:

R4 7,612.3
midpoint 7,545.4
R3 7,478.5
midpoint 7,460.4
R2 7,442.3
midpoint 7,417.9
R1 7,393.5
midpoint 7,375.4
PP 7,357.3
midpoint 7,332.9
S1 7,308.5
midpoint 7,290.4
S2 7,272.3
midpoint 7,247.9
S3 7,223.5
midpoint 7,162.9
S4 7,102.3

Current market is below the PP.
7200 is a critical point based on swing points..
Thanx zoozoo for intraday pivots. Very Happy  But, its only shows intraday, so feel not much useful  Sad
My critical 7200 level is broken... Next 7150, If so, trend reversal.... Question  Shocked Shocked

NC

NC
Assistant Vice President - Equity Analytics
Assistant Vice President - Equity Analytics

Game 1 Change kala.... !!!
Pivot point indicator; developed by ZOOZZOO Z

Very Happy

Miranda Wijethunga

Miranda Wijethunga
Stock Trader

Could anyone please explain whether pivot points are able to generate using Atrad trading platform? Or else do we need to calculate & draw it manually using charting tools of the platform. Thank you!

Sponsored content



Back to top  Message [Page 1 of 1]

Reply to topic

Permissions in this forum:
You can reply to topics in this forum