- Accounts & Connection Management
- Data Management & Analysis
- Price Monitoring
- Charting
- Trading
- Scanners
-
Builders
-
Manual Strategy Builder
- Main Concept
- Operand Component
- Algo Elements
-
Use Cases
- How to create a condition on something crossing something
- How to create an indicator based on another indicator
- How to calculate a stop loss based on indicator
- How to submit stop order based on calculated price
- How to calculate a current bar price using a price type from inputs
- How to Use a Closed Bar Price
- Automatic Strategy Builder
-
Manual Strategy Builder
- Autotrading
- FinScript
- Trade Analysis
- Media Feeds
- Logs & Notifications
- UI & UX
BulkowskiCandlePatternCalculationContext is a candlestick pattern recognize helper. This object contains a lot of calculated information that can be useful in the pattern detection function. So users have access to the following information:
- AvgBodyHeight - average body height for the 6 latest candles;
- AvgUpShadowLen - average up shadow length for the 6 latest candles;
- AvgDnShadowLen - average down shadow length for the 6 latest candles;
- PrHigh - high price of the latest candle;
- PrLow - low proce of the latest candle;
- PrClose - close price of the latest candle;
- PrOpen - open price of the latest candle;
- YDayHigh - high price of the previous candle;
- YDayLow - low price of the previous candle;
- YDayClose - close price of the previous candle;
- YDayOpen - open price of the previous candle;
- BodyHeight - body height of the latest candle;
- LongBodyToday - flag whether body of the latest candle is long;
- SmallBodyToday - flag whether body of the latest candle is small;
- ColorToday - have the following values: -1 for the case when PrOpen=PrClose, 0 - if PrClose>PrOpen, 1 - otherwise;
- SmallBodyYesterday - flag whether body of previous candle is small;
- LongBodyYesterday - flag whether body of previous candle is long;
- ColorYesterday - have the following values: -1 for the case when YDayOpen=YDayClose, 0 - if YDayClose>YDayOpen, 1 - otherwise;
- CandleHeight - PrHigh - PrLow;
- UpperShadowLength - length of the upper shadow;
- LowerShadowLength - length of the lower shadow;
- BottomNear - flag whethe LowerShadowLength is small;
- LongUpperShadow - flag whether UpperShadowLength is bigger than BodyHeight;
- LongLowerShadow - flag whether LowerShadowLength is bigger than BodyHeight;
- TopNear - flag whethe UpperShadowLength is small;
- Accounts & Connection Management
- Data Management & Analysis
- Price Monitoring
- Charting
- Trading
- Scanners
-
Builders
-
Manual Strategy Builder
- Main Concept
- Operand Component
- Algo Elements
-
Use Cases
- How to create a condition on something crossing something
- How to create an indicator based on another indicator
- How to calculate a stop loss based on indicator
- How to submit stop order based on calculated price
- How to calculate a current bar price using a price type from inputs
- How to Use a Closed Bar Price
- Automatic Strategy Builder
-
Manual Strategy Builder
- Autotrading
- FinScript
- Trade Analysis
- Media Feeds
- Logs & Notifications
- UI & UX