To address the problem of executing DRAWKLINE(H, O, L, C) in Tongdaxin formulas only when the code does not start with 880, follow these steps:
-
Access Current Code: Use the CODE() function to retrieve the current stock code.
-
Extract Prefix: Extract the first three characters of the code using LEFT(CODE(), 3).
-
Comparison: Compare the extracted prefix against “880” using IF(LEFT(CODE(), 3) != “880”, ...). Note that string comparison in Tongdaxin may require specific handling, potentially using functions like STRCMP.
-
Conditional Execution: Wrap DRAWKLINE(H, O, L, C) within the condition to execute it only when the code does not start with 880.
-
Integrate into Study Function: Use STUDY(..., ...), passing the condition as a parameter to ensure execution only under the desired circumstances.
Here’s how the formula would look:
1 2 |
DRAWKLINE(H, O, L, C), REF(STRCMP(LEFT(CODE(),3),“880”), 0) == 1 |
This ensures DRAWKLINE executes when the code does not start with “880”.