Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
# Check if the close is in the Highs/Lows/Middle of the bar.
# C_RP 20100809
# original code - def x1 = if (close == low) then avgSpread else (spread /(close - low));
def x1 = if (high == low) then 2.0 else if (close == low) then 2.65 else (spread /
(close - low));
# C_RP try the line below with various divisors totalSum result in a minimum of 2.3 on a spread of 1 pip instead of using a fixed 2.3 as in the line above
# def x1 = if (high==low) then 2.0 else if (close == low) then (spread / 0.43 ) else (spread / (close - low));
rec isUpThrustBar = isWideSpreadBar && isDownCloseBar && ShortTermTrendSlope > 0 && middleTermTrendSlope > 0; #C_RP added positive middleTermTrendSlope requirement to filter out upThrusts in trends that are only short term. Consider adding longTermTrendSlope requirement as well.
The strategy behind this is you bracket up or down spike bars with the ToS fib tool (my usual pull is either low to high or high to low, 100, to 0 with levels of .67, .5 and .33)
So let's say we bracket a bar w/ open 6300 and close of 6330, the levels would be 6300, 6310, 6315, 6320 and 6330.
The idea behind this is to play those levels for long or short with emphasis on 50% or 33% ie it's staying in the upper or lower range of the spike bar (nothing novel or fancy, I think I might have originally got this from Al Brooks or?)
I'm not in this for the long haul, one contract (low risk reward) 4-5-6 ticks here and there - adds up quickly
/CL M1 12-9-14
Pull on the first spike up bar is 6322 to 6333, 50% 6328
Pull on the second spike up bar is 6341 to 6354, 50% is 6347
Leaving the long pull up on both bars (50% is 50%) the 6347 went resistance and the 6322 gave us an area where price reacted, resumed north
I'm not cherry picking these charts (pull up you own chart, software not needed) go over to the thread I started over at thinkscripter dot com
-Bill_M
EDIT
Here's a better screenshot of the above (the only diff is now I'm testing fib pull with .75 and .25 vs .67 and .33)
Per the previous screen shots and below screenshot
The gray bars are normal spread/ volume, nothing taking place out of the ordinary: however one caveat - they are based on the look back period. Technically the bar(s) could be a wide spread or narrow spread on volume other than low volume etc (from experience this is not bad)
The yellow bars are low volume bars - I've added to the study to have them show as low volume if the volume on that bar is less than .30 volume of the bars in the look back period. I f you increase this factor (it can be set by the operator) then you would have less gray bars and more yellow bars.
The blue bars are churn bars - especially noticeable at the pit close (in conjunction w/ watching the DOM)
The cyan and magenta spike bars are exactly that. Keep in mind the volume on those bars is relative to what has happened in the look back period as well they are also based on a +/- 1.985 standard deviation move
An interesting thing concerning the spike bars - they can represent where they either hit the bid or lifted the offer
I don't have time to read back through all of these posts to see if this has been mentioned, but you can scan for "Effort to move UP" in TOS Stock Hacker. Use with Fibonacci retracements or Ambush Fibonacci and you will see a lot of these on the 1hr charts pushing through those levels. Use with TOS RelativeVolumeStDev for confirmation. To reduce noise I have unchecked the "show plot" for all plots except: Effort to move up, Effort to move down,Two/Three per, and Weakness... I feel these are the most significant and most prevalent. Also look for confirmation of a signal across multiple time frames. I see "Weakness" on the 133tick and 1m chart side by side quite often near a top with "Effort to move up" close behind. Multiple "Effort to move down" bars followed by an "Effort to move up" on 5m. I will post some screen shots when I get the time and make my post count.