日盛HTS母子區間線,有人可以幫忙改成Multicharts的程式碼嗎?
Value1 =0
Condition1 = False
Do While Value1 < 100 and Condition1 = False
Condition1 = (High[Value1] > High[value1+1] and
Low[Value1] < Low[Value1 + 1])
If Condition1 = False then
Value1 = Value1 + 1
End If
Loop
If Condition1 then
DrawBar1(High[value1], Low[value1], "HLArea")
Draw1(High[value1],"OBHigh")
Draw2( Low[value1],"OBLow")
Else
NoDrawBar(1)
NoDraw(1)
NoDraw(2)
End if
|