2楼
5分钟内
韬客社区www.talkfx.co
发表于:2015-03-19 07:49只看该作者
3楼

在市场里,先能存活,再说挣钱!
发表于:2015-03-19 12:15只看该作者
4楼

5楼
有搜语音报价
韬客社区www.talkfx.co
发表于:2015-03-19 14:30只看该作者
6楼
int tf=PERIOD_M5;
if ( MathAbs(iHigh(NULL,tf,0)-iLow(NULL,tf,0))>400*Point )
Alert("Oh"," My God !");
评分
参与人数1
积分
金币
人气
时间
理由
8楼
氺煮鱼 发表于 2015-3-19 22:30
int tf=PERIOD_M5; if ( MathAbs(iHigh(NULL,tf,0)-iLow(NULL,tf,0))>400*Point ) Alert("Oh"," My God ! ...


韬客社区www.talkfx.co
9楼
szzfl 发表于 2015-3-19 23:09
有,收费500。
韬客社区www.talkfx.co
10楼
为什么一加载完立即又移除呢?怎样才能让它持续作用呢?
Script ttt EURUSD,M5: loaded successfully
Script ttt EURUSD,M5: removed
韬客社区www.talkfx.co
11楼
应该要如何修改?
//+------------------------------------------------------------------+
//| ttt.mq4 |
//| Copyright 2015, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2015, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
int tf=PERIOD_M5;
if ( MathAbs(iHigh(NULL,tf,0)-iLow(NULL,tf,0))>400*Point )
SendMail(" " ," " );
}
//+------------------------------------------------------------------+
韬客社区www.talkfx.co