|
为什么窗口中什么都没有?请指点!<div class="blockcode"><div id="code_vf5"><ol> #property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Green double sma[]; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,sma); //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int i,limit,counted_bars=IndicatorCounted(); //---- { for( i=0; i |
请教能人!
回复:0 浏览:617
- 楼主admin 圈主
- 2019-05-05 15:17