ChartFormat for you
- 实用工具
- Vasyl Temchenko
- 版本: 1.0
这个小脚本会照亮你的生活。
下面是它的代码,你可以将它插入到任何机器人的 OnInit 中。 或更改颜色和比例以适合您的口味
#property copyright "V.Temchenko Skype:vasily.temchenko" #property link "Mailto:tvp.prog.96@gmail.com" #property version "1.00" #property strict #property description "Have questions? Skype: vasily.temchenko Viber: +38098 800-6-800"; #property description "If the voice - only Russian, Ukrainian or Belarusian"; #property description "And you can write in English, Russian, Ukrainian"; #property description "With pleasure I will write a robot according to your strategy."; #property description "I can also offer several robots according to my strategies."; #property icon "\\Images\\force64.ico"; // =============================================================================== void OnStart() { ChartSetInteger(0,CHART_SHOW_GRID,0,0); ChartSetInteger(0,CHART_COLOR_CHART_UP,White); ChartSetInteger(0,CHART_MODE,1);ChartSetInteger(0,CHART_SHOW_OHLC,0,0); ChartSetInteger(0,CHART_COLOR_CANDLE_BULL,White); ChartSetInteger(0,CHART_COLOR_CANDLE_BEAR,LightSeaGreen); ChartSetInteger(0,CHART_SCALE,2); ChartSetInteger(0,CHART_SHIFT,true); ChartSetDouble (0,CHART_SHIFT_SIZE,15); } //-- OnStart() // ===============================================================================
用户没有留下任何评级信息