v2
Added:
body_high(o, c)
Parameters:
o: Open price
c: Close price
body_low(o, c)
Parameters:
o: Open price
c: Close price
is_green(o, c)
Parameters:
o: Open price
c: Close price
is_red(o, c)
Parameters:
o: Open price
c: Close price
body_size(o, c, mintick)
Parameters:
o: Open price
c: Close price
mintick: Min tick value for the symbol.
body_percent(o, h, l, c)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
top_wick_size(o, h, c, mintick)
Parameters:
o: Open price
h: High price
c: Close price
mintick: Min tick value for the symbol.
top_wick_percent(o, h, l, c)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
bottom_wick_size(o, l, c, mintick)
Parameters:
o: Open price
l: Low price
c: Close price
mintick: Min tick value for the symbol.
bottom_wick_percent(o, h, l, c)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
wick_percent(o, h, l, c)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
is_hammer(o, h, l, c, fib, color_match)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
fib: Fibonachi level
color_match: If true then the color of the candle will be checked
is_shooting_star(o, h, l, c, fib, color_match)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
fib: Fibonachi level
color_match: If true then the color of the candle will be checked
is_doji(o, h, l, c, max_body_percent, wick_size)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
max_body_percent: Max percentage of candle body
wick_size: Size of wick
is_whalish(offset, o, c)
Parameters:
offset: Safe dynamic offset you need to use in your stoploss, stop buy/sell, etc.
o: Open price
c: Close price
is_bullish_engulfing(o, h, l, c, allowed_gap, allowed_rejection_wick, engulf_wick)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
allowed_gap: How much gap is allowed
allowed_rejection_wick: Max ratio of top wick size on body size
engulf_wick: Should it engulf wick of previous candle?
is_bearish_engulfing(o, h, l, c, allowed_gap, allowed_rejection_wick, engulf_wick)
Parameters:
o: Open price
h: High price
l: Low price
c: Close price
allowed_gap: How much gap is allowed
allowed_rejection_wick: Max ratio of bottom wick size on body size
engulf_wick: Should it engulf wick of previous candle?
bullish_bars(length, o, c, start)
Parameters:
length: Number of bars (length).
o: Open price
c: Close price
start: Series number of bars that should be skipped before process.
bearish_bars(length, o, c, start)
Parameters:
length: Number of bars (length).
o: Open price
c: Close price
start: Series number of bars that should be skipped before process.