Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

GCB

An Auto Pivot Level Indicator

Recommended Posts

People have been asking for an auto pivot level indicator. Here is the one I wrote. I use it every day and it is the most useful indicator I have written. I couldn't trade without it.

:wohoo:

 

This indicator will calculate and plot automatic pivot levels and yesterday's high, low and close. It will also plot the non-auto levels of overnight high, low, and value area high, low and point of control. These non-auto levels must be input every day manually. The levels which are automatically generated may also be input manually if you so choose. This is useful on days where the previous day's chart is for one reason or another messed up. This can happen on rollover days or on days following holidays.

 

The auto levels are calculated based upon the high low and close of the session in which the chart is displayed. So pick a session which reflect the proper open and close for the levels you are trying to generate.

 

The indicator does not label the levels. However, I find labels obtrusive and rather chose to use different colors and line styles to differentiate the various levels. (See attached image.) A logical color and style scheme makes it easy to learn to identify the levels by sight, and once learned is actually more intuitive than reading labels. For my own use, I set the midpoints to gray and PP a unique color, R1 and S1 the same color, R2 and S2 the same color, and so forth. I make all the pivot levels dashed lines. High low and close I make solid green, red and cyan lines. Overnight high and low I make a lighter green and red. For value area lines I used variations on yellow with a hatched style. This takes some effort to set up but once you make it the default setting (click default) you don't need to do it again and is worth the effort.

 

The plotting of each level is optional. For example, PlotR1 = 1 will cause R1 and its midpoint to be plotted. PlotHigh = 0 will cause yesterday's high to not be plotted. This is useful to make sure neither too many nor not enough lines appear on your chart. For example, there is no point in plotting R2 when price has never gotten higher than yesterday's close--it just scrunches the chart. There also is no point in plotting yesterday's low when prices has gapped up to R3. I use these every day to customize the level plotting and often change them several times a day when price moves around a lot. This flexibility is very useful to keeping the chart as readable as possible.

 

Several non-auto levels--overnight low, high and value area values--can be input, but will only be plotted if PlotNonAuto = 1.

 

Non-auto levels can also be also be input manually for the normally auto levels (pivots and high, low and close) if you so choose. This is useful on days when yesterday's chart is misleading for some reason, like on days after holidays when the stock market was closed but the futures market was open or on rollover days. These will be used only if PlotAuto = 0.

 

On those troublesome days after holidays when the stock market was closed but the futures market was open, the market tends to respect the pivot levels generated from the day before the holiday. In that case you can optionally set PlotSkipYest = 1, which tells the indicator to use the day before yesterday's chart data to generate todays levels. I find this is the ticket most of the time in these situations.

 

Pivot Level Formulas used:

 

Resistance Level 4 = R3 = R2 + LastHigh - LastLow

Resistance Level 3 = R3 = R2 + LastHigh - LastLow

Resistance Level 2 = R2 = PP + LastHigh - LastLow

Resistance Level 1 = R1 = PP * 2 - LastLow

PivotPoint = PP = (LastHigh + LastLow + LastClose) / 3

Support Level 1 = S1 = PP * 2 - LastHigh

Support Level 2 = S2 = PP - LastHigh + LastLow

Support Level 3 = S3 = S2 - LastHigh + LastLow

Support Level 4 = S4 = S3 - LastHigh + LastLow

 

Uses the open and close of the chart session to determine auto levels.

 

Input value meanings:

  • PlotAuto = 1 -- Plot every level which can have an auto level. This includes pivot levels and yesterday's high, low and close.
  • PlotAuto = 0 -- Use input values for pivot levels and high, low and close, if they are not zero.
  • PlotNonAuto = 1 -- Plot every level which can be input except for those which can be auto if PlotAuto = 1. This includes overnight highs and low and value area values.
  • PlotNonAuto = 0 -- Do not plot any input values.
  • PlotAuto = 0 -- Use input values for pivot levels and high, low and close, if they are not zero.
  • TodayOnly = 1 -- Only plot pivots for today.
  • TodayOnly = 0 -- Plots pivots for all days on chart.
  • MidsOuter = 1 -- Plots all pivot levels selected except the extreme levels, which make the midpoints the extreme. Used to save space.
  • MidsOuter = 0 -- The outer lines with be the extreme pivot levels selected.
  • NoMids = 1 -- No midpoints will be plotted.
  • NoMids = 0 -- All midpoints will be plotted.
  • PlotSkipYest = 1 -- The day before yesterday will be used to calculate pivot levels. Useful for days after stock market holidays when the futures market was open.
  • PlotSkipYest = 0 -- Levels will be calculated from yesterday's data.
  • PlotR4 thru PlotS4 = 1 -- Plot this particular pivot level and its midpoint (if NoMids=0).
  • PlotHigh = 1 -- Plot yesterday's high.
  • PlotLow = 1 -- Plot yesterday's low.
  • PlotClose = 1 -- Plot yesterday's close.
  • PlotOHigh = 1 -- Plot the overnight high. (Value must be input in IOH).
  • PlotOLow = 1 -- Plot the overnight low. (Value must be input in IOL).
  • PlotVAH = 1 -- Plot the VAH. (Value must be input in IVAH).
  • PlotVAL = 1 -- Plot the VAL. (Value must be input in IVAL).
  • PlotPOC = 1 -- Plot the POC. (Value must be input in IPOC).
  • IOH -- Input overnight high. (Will be used if PlotAuto = 0 and the value <> 0, and so also for the inputs which follow).
  • IOL -- Input overnight low.
  • IH -- Input yesterday high.
  • IL -- Input yesterday low.
  • IC -- Input yesterday close.
  • IVAH -- Input VAH.
  • IVAL -- Input VAL.
  • IPOC -- Input POC.
  • IR4 thru IS4 -- Input values for pivot levels.

I hope you find this useful. However, I may not be able to make any customizations for you. Let me know what you think. :)

Levels.jpg.ce04ce2dfd62d6d9291920aadd3c24cb.jpg

LEVELSNEW.ELD

Share this post


Link to post
Share on other sites

Mistake in documentation. Should read at bottom.

 

IOH -- Input overnight high. (Will be used if PlotNonAuto = 1 and the value <> 0, and so also for the inputs which follow except IR4 thru IS4).

...

IR4 thru IS4 -- Input values for pivot levels. (Will be used if PlotAuto = 0 and the value <> 0).

Share this post


Link to post
Share on other sites

The name of the indicator you use should be $I-Levels, not the $-Levels which was in the first install. That's the old version.

 

(I use the $ to distinguish my indicators from TradeStation, "I" just means indicator. The $ makes mine sort to the top of any list which makes them easy to find.)

Share this post


Link to post
Share on other sites

Hi GCB,

 

I have updated the first thread with the new ELD attachment. For future reference, I have added the function of allowing certain forums to be editted anytime. You should be able to update, edit your threads in this forum at any given moment. Thanks.

Share this post


Link to post
Share on other sites

GCB,

 

I have been looking for this type of indicator for a while. Thanks for taking the time to code it - for I cannot code. However, I am a guy who likes to see labels. Would you have the code to add so labels can be seen? This would be much appreciated. Thanks

 

Tradem

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • Be careful who you blame.   I can tell you one thing for sure.   Effective traders don’t blame others when things start to go wrong.   You can hang onto your tendency to play the victim, or the martyr… but if you want to achieve in trading, you have to be prepared to take responsibility.   People assign reasons to outcomes, whether based on internal or external factors.   When traders face losses, it's common for them to blame bad luck, poor advice, or other external factors, rather than reflecting on their own personal attributes like arrogance, fear, or greed.   This is a challenging lesson to grasp in your trading journey, but one that holds immense value.   This is called attribution theory. Taking responsibility for your actions is the key to improving your trading skills. Pause and ask yourself - What role did I play in my financial decisions?   After all, you were the one who listened to that source, and decided to act on that trade based on the rumour. Attributing results solely to external circumstances is what is known as having an ‘external locus of control’.   It's a concept coined by psychologist Julian Rotter in 1954. A trader with an external locus of control might say, "I made a profit because the markets are currently favourable."   Instead, strive to develop an "internal locus of control" and take ownership of your actions.   Assume that all trading results are within your realm of responsibility and actively seek ways to improve your own behaviour.   This is the fastest route to enhancing your trading abilities. A trader with an internal locus of control might proudly state, "My equity curve is rising because I am a disciplined trader who faithfully follows my trading plan." Author: Louise Bedford Source: https://www.tradinggame.com.au/
    • SELF IMPROVEMENT.   The whole self-help industry began when Dale Carnegie published How to Win Friends and Influence People in 1936. Then came other classics like Think And Grow Rich by Napoleon Hill, Awaken the Giant Within by Tony Robbins toward the end of the century.   Today, teaching people how to improve themselves is a business. A pure ruthless business where some people sell utter bullshit.   There are broke Instagrammers and YouTubers with literally no solid background teaching men how to be attractive to women, how to begin a start-up, how to become successful — most of these guys speaking nothing more than hollow motivational words and cliche stuff. They waste your time. Some of these people who present themselves as hugely successful also give talks and write books.   There are so many books on financial advice, self-improvement, love, etc and some people actually try to read them. They are a waste of time, mostly.   When you start reading a dozen books on finance you realize that they all say the same stuff.   You are not going to live forever in the learning phase. Don't procrastinate by reading bull-shit or the same good knowledge in 10 books. What we ought to do is choose wisely.   Yes. A good book can change your life, given you do what it asks you to do.   All the books I have named up to now are worthy of reading. Tim Ferriss, Simon Sinek, Robert Greene — these guys are worthy of reading. These guys teach what others don't. Their books are unique and actually, come from relevant and successful people.   When Richard Branson writes a book about entrepreneurship, go read it. Every line in that book is said by one of the greatest entrepreneurs of our time.   When a Chinese millionaire( he claims to be) Youtuber who releases a video titled “Why reading books keeps you broke” and a year later another one “My recommendation of books for grand success” you should be wise to tell him to jump from Victoria Falls.   These self-improvement gurus sell you delusions.   They say they have those little tricks that only they know that if you use, everything in your life will be perfect. Those little tricks. We are just “making of a to-do-list before sleeping” away from becoming the next Bill Gates.   There are no little tricks.   There is no success-mantra.   Self-improvement is a trap for 99% of the people. You can't do that unless you are very, very strong.   If you are looking for easy ways, you will only keep wasting your time forgetting that your time on this planet is limited, as alive humans that is.   Also, I feel that people who claim to read like a book a day or promote it are idiots. You retain nothing. When you do read a good book, you read slow, sometimes a whole paragraph, again and again, dwelling on it, trying to internalize its knowledge. You try to understand. You think. It takes time.   It's better to read a good book 10 times than 1000 stupid ones.   So be choosy. Read from the guys who actually know something, not some wannabe ‘influencers’.   Edit: Think And Grow Rich was written as a result of a project assigned to Napoleon Hill by Andrew Carnegie(the 2nd richest man in recent history). He was asked to study the most successful people on the planet and document which characteristics made them great. He did extensive work in studying hundreds of the most successful people of that time. The result was that little book.   Nowadays some people just study Instagram algorithms and think of themselves as a Dale Carnegie or Anthony Robbins. By Nupur Nishant, Quora Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
    • $CSCO Cisco Systems stock, nice top of range breakout, from Stocks to Watch at https://stockconsultant.com/?CSCOSEPN Septerna stock watch for a bottom breakout, good upside price gap
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.