Order Block Trend Calculation
::: info Cette page est générée automatiquement à partir d’une spécification Gauge. Source:specs/orderBlocks.spec
:::
Calculate Trend Score for OPEN Status
- Given the following order blocks
type status BULLISH_ORDER_BLOCK OPEN BEARISH_ORDER_BLOCK OPEN SUPPLY_ZONE OPEN DEMAND_ZONE OPEN - When calculating trend score
- Then trend score should be “0”
Calculate Trend Score for REACHED Status
- Given the following order blocks
type status SUPPLY_ZONE REACHED DEMAND_ZONE REACHED - When calculating trend score
- Then trend score should be “0”
Calculate Mixed Status Scenario
- Given the following order blocks
type status BULLISH_ORDER_BLOCK OPEN SUPPLY_ZONE REACHED BULLISH_ORDER_BLOCK OPEN - When calculating trend score
- Then trend score should be “1”
Calculate Complex Bullish Scenario
- Given the following order blocks
type status BULLISH_ORDER_BLOCK OPEN DEMAND_ZONE REACHED BEARISH_ORDER_BLOCK CLOSED - When calculating trend score
- Then trend score should be “4”
Calculate Complex Bearish Scenario
- Given the following order blocks
type status BEARISH_ORDER_BLOCK OPEN SUPPLY_ZONE REACHED BULLISH_ORDER_BLOCK CLOSED - When calculating trend score
- Then trend score should be “-4”