有人可以幫忙改成Multicharts的程式碼嗎?
日盛HTS母子區間線,有人可以幫忙改成Multicharts的程式碼嗎?Value1 =0
Condition1 = False
Do While Value1 < 100 and Condition1 = False
Condition1 = (High > High and
Low < Low)
If Condition1 = False then
Value1 = Value1 + 1
End If
Loop
If Condition1 then
DrawBar1(High, Low, "HLArea")
Draw1(High,"OBHigh")
Draw2( Low,"OBLow")
Else
NoDrawBar(1)
NoDraw(1)
NoDraw(2)
End if
怎麼幫法...外包改寫或者MC教學...
基本上就是 今天 變動大(高過高,低過低)...
more_high = high < high;
less_low = high > high;
big_changes = more_high and less_low;
頁:
[1]