NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Searching for entries matching inside, looking in keywords for any words
Found 5 matching entries

Sort by

Entries
irInsideBarsAll for NT-8.0.17.2 64-bit 5 *
As the name implies, this NT-8 indicator looks for Inside Bars and then simply paints an all white bar on your candle stick or OHLC bar chart, (it works on Hollow Candlestick charts also).

If the bar is an Inside Bar and is also a Doji (Open[0] == Close[0]) the indicator will paint a diamond on the close of the bar to highlight the Doji for you.

You might have to change the default color choices if you're using lighter colored chart backgrounds.

Indicator will color the candlestick outlines and the candle bodies, one color regardless of the direction they close in (up or down). The indicator is set to calculate on bar close. (no need for it to be anything else)

Inside Bar condition: if(High[0] < High[1] && Low[0] > Low[1])
"Doji" condition: if(Open[0] == Close[0])

As I said, it's not the Holy Grail, but I find it helpful to have a visual clue that suggests "something may have changed here".


Category NinjaTrader 8 Indicators and More 
 
Suggest other entries I might like
Details: irInsideBarsAll for NT-8.0.17.2 64-bit
Category: NinjaTrader 8 Indicators and More 


April 6th, 2019
Size: 2.33 KB
Downloaded: 877 times

Keywords: bars candlestick inside patterns
Inside_LegUp_LegDn_Candles 5 *
This study is very simple. An IO member asked me to create it for their own strategy. It is useful for visualizing acceptance/failure in price exploration. I find it most useful in 30 min and 15 min time frames. The candles will automatically color based on the close of a candle and will tell you more about price action than your order flow candles.

Order flow has a lot of information/details, but I like the way these candles visualize automatically and I don't know c## so can't create this on ninja.

Leg Up means close is above previous High
Inside means close is inside previous candle, but price explored outside previous candle
Leg Down means close is below previous Low
Base means entire current candle is inside previous candle price action


Category ThinkOrSwim 
 
Suggest other entries I might like
Details: Inside_LegUp_LegDn_Candles
Category: ThinkOrSwim 


February 24th, 2018
Size: 1.01 KB
Downloaded: 447 times

Keywords: candle down inside up leg base
Range Analysis 5 *
Exported using NT Version 7.0.1000.16

This indicator allows to detect narrow range bars, inside bars, wide range bars, outside bars and triangles. The bar types follow the terminology presented by Toby Crabel in his book "Day Trading With Short Term Price Patterns and Opening Range Breakout". The triangle is a pattern made popular by Linda Bradford Raschke, also see here: https://nexusfi.com/ninjatrader/27847-linda-bradford-raschke-three-bar-triangle.html


These are the patterns that can be identified with the indicator with default settings:

Narrow range bar (NR7): a bar with a smaller range than the prior 6 bars

Narrow range inside bar (IB4): an inside bar with a smaller range than the prior 3 bars

Narrow range inside bar (IB7): an inside bar with a smaller range than the prior 6 bars

Double inside bar (DI4): an inside bar that is preceded by an inside bar and which has a smaller range than the prededing 4 bars

Wide range bar (WR7): a bar with a larger range than the prior 6 bars

Wide range outside bar (OB4): an outside bar with a larger range than the prior 3 bars

Wide range outside bar (OB7): an outside bar with a larger range than the prior 6 bars

Three bar triangle (LBR): a bar which lies inside the combined range of the prior two bars

Each of the patterns above can be selected an unseleceted. It is not recommended to display all the patterns at the same time on an intraday chart. The different patterns can be shown as text, diamonds or paintbars.

Simple inside bars: When the parameter "lookback inside bars" is set to 2, the indicator will detect all inside and double inside bars without taking into account their range size relative to preceding bars.

Simple outside bars: When the parameter "Lookback outside bars" is set to 2, the indicator will detect all outside bars.

The indicator comes with sound files which are part of the zipped file. The sound files can be extracted and copied to the directory C:\program files (x86)\NinjaTrader 7\sounds. The sounds will work with COBC=true and COBC= false. With COBC= false, wide range and outside bars are detected intra-bar, while narrow range, inside bars and triangles are detected after the bar has closed.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Range Analysis
Category: NinjaTrader 7 Indicators 


October 19th, 2013
Size: 363.38 KB
Downloaded: 1713 times

Keywords: inside insidebar narrowrange narrowrangebar outside outsidebar triangles widerange widerangebar
InBarsOut v1
Attached is a paintbar indi for TradeStation to show Inside
and Outside bars - or rather TS' Engulfing and Harami bars.

The attached picture has inside bars light green & bright red,
outside bars dark green & red. It is just an example - not all
reversals are signaled as well as that !

To be able to use the windows colors specified in the code,
you have to install x11.eld from
https://jamstrategytrading.com/FreeStuff.htm
This allows access to many of Windows' standard colors by
name.
See also https://en.wikipedia.org/wiki/X11_color_names

As in the code, to specify a color, one then prepends
color.
to the color's name :
InDnColor(color.Red)
for instance.
If you're happy with TradeStation's range of colors, you can
remove every instance of
color.

The (amateur) code :

 
Code
{ Candlestick PaintBar }

inputs: Length( 14) , 
    InUpColor(color.Chartreuse) , InDnColor(color.Red) , 
    OutUpColor(color.DarkGreen) , OutDnColor(color.FireBrick) ,
    NmlUpColor(color.LightSeaGreen), NmlDnColor(color.LightSalmon) ,
variables: oBullishEngulfing( 0 ) , oBearishEngulfing( 0 ) , oBullishHarami(0) , oBearishHarami(0), barColor(blue) ;

Value1 = C_BullEng_BearEng( Length, oBullishEngulfing, oBearishEngulfing ) ;
Value2 = C_BullHar_BearHar( Length, oBullishHarami, oBearishHarami ) ;

    if oBullishEngulfing = 1 then barColor = OutUpColor  
    else if oBullishHarami = 1 then barColor = InUpColor   
    else if oBearishEngulfing = 1 then barColor = OutDnColor  
    else if oBearishHarami = 1 then barColor = InDnColor   
    else if Close > Open then barColor = NmlUpColor  
    else if Close < Open then barColor = NmlDnColor  ;

    PlotPaintBar( High, Low, "InsOuts", barColor ) ;


Category TradeStation (hidden) 
 
Suggest other entries I might like
Details: InBarsOut v1
Category: TradeStation (hidden) 


November 25th, 2011
Size: 18.96 KB
Downloaded: 308 times

Keywords: bars inside outside
How to Use Bar Patterns to Spot Trade Setups 4 *
Interesting setups using a combination of inside and outside bars.


Category Educational 
 
Suggest other entries I might like
Details: How to Use Bar Patterns to Spot Trade Setups
Category: Educational 


June 16th, 2010
Size: 907.65 KB
Downloaded: 957 times

Keywords: action bars price inside outside
 


 
Category
 




© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top