2楼
/*[[
Name := te
Author := Copyright ?2004, MetaQuotes Software Corp.
Link := http://www.metaquotes.net/
Separate Window := No
First Color := Blue
First Draw Type := Line
First Symbol := 217
Use Second Data := No
Second Color := Red
Second Draw Type := Line
Second Symbol := 218
]]*/
Variable : shift(0);
SetLoopCount(0);
// loop from first bar to current bar (with shift=0)
For shift=Bars-1 Downto 0 Begin
SetIndexValue(shift,Lowest(MODE_LOW,6,6));
End;
这代码错在那里?怎么画不出来?什么线也没有。
发表于:2004-04-26 17:52只看该作者
3楼
/*[[
Name := te
Author := Copyright ?2004, MetaQuotes Software Corp.
Link := http://www.metaquotes.net/
Separate Window := No
First Color := Blue
First Draw Type := Line
First Symbol := 217
Use Second Data := No
Second Color := Red
Second Draw Type := Line
Second Symbol := 218
]]*/
Variable : shift(0);
SetLoopCount(0);
// loop from first bar to current bar (with shift=0)
For shift=Bars-1 Downto 0 Begin
SetIndexValue(shift,low[Lowest(MODE_LOW,shift,6)]);
End;
啥都不会,啥都想学