Ⅰ MT4 ea源碼怎麼限制時間
我有MT4時間跟賬戶使用限制的源碼。但是 跟EA系統源碼結合到一起的時候不能夠載入到平台軟體上。是個問題。需要找一個非常專業的人士結合才可以!!
Ⅱ 外匯EA的EA的開發
外匯EA在MT4平台上進行開發,採用MQL4語言編寫交易策略,EA的文件形式回是mq4文件或ex4文件,其中答mq4文件是源碼文件。 這種語言可以創建你自己的智能交易,使自己的交易策略能夠完全自動地執行。而且,MQL4 還能自定義客戶指標,腳本和資料庫。內包含了大量可以分析當前及歷史報價所必須的函數,以及一些基本的運算和邏輯操作。並內置了一些基本的指標和操作命令。
打開MT4軟體的MetaEditor編輯器,選擇新建-智能交易系統,就可以開始開發自己的EA了。MQL4語言的基本語法類似於C語言,MetaEditor內含詳細的幫助文件,可以幫助開發者正確地使用各種交易函數和操作指令。開發完成後需要進行編譯和歷史回測,並對EA的參數設置等進行不斷優化,對EA的風險進行准確的評估之後再用於實盤賬戶運行。
Ⅲ 有什麼好的外匯EA嗎不加倉不死扛單子的
匯金達外匯提供穩定盈利的EA給客戶使用,可以網路一下匯金達,EA不收費的
Ⅳ 外匯刷單我想一天刷10手歐美,那麼我要用的本金和手數是多少呢
歐美波動性不大特別是上午的時候 ,不知道你用的是什麼平台 木錢內 我用的 zfx山海證券容,主要用macd雙線指標,提示 看五分鍾先比較好 歐美的成本大概 13美金能返佣5美金一手每次下0.1 交易的次數不會太多 上午操作機會大概也就 四五次 然後 下午和晚上機會多但是最好還是少做 因為 三點以後 不確定性 太多 價格波動塊 建議不要重倉 0.5 下單一定要快平 賺錢跑就好 了一次下0.2-0.3一天 刷五手肯定沒問題 10手有點困難
Ⅳ MT4 EA源代碼里 針對有些平台的貨幣後綴怎麼解決
用通用貨幣Symbol()符號不行嗎?
或者自定義一個後續,貨幣對+自定義後續
string 自定義=.dps;
例如EURUSD.dps,寫成EURUSD+自定義
Ⅵ mt4軟體怎麼提取ea的源碼
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 4
#property indicator_color1 Lime //bbMacd up
#property indicator_color2 Magenta //bbMacd up
#property indicator_color3 Blue //Upperband
#property indicator_color4 Red //Lowerband
//---- indicator parameters
extern int FastLen = 12;
extern int SlowLen = 26;
extern int Length = 10;
extern int barsCount = 400;
extern double StDv = 2.5;
//----
int loopbegin;
int shift;
double zeroline;
//---- indicator buffers
double ExtMapBuffer1[]; // bbMacd
double ExtMapBuffer2[]; // bbMacd
double ExtMapBuffer3[]; // Upperband Line
double ExtMapBuffer4[]; // Lowerband Line
//---- buffers
double bbMacd[];
double Upperband[];
double Lowerband[];
double avg[];
double bbMacdline;
double sDev;
double mean;
double sumSqr;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- 6 additional buffers are used for counting.
IndicatorBuffers(8);
//---- drawing settings
SetIndexBuffer(0, ExtMapBuffer1); // bbMacd line
SetIndexStyle(0, DRAW_ARROW);
SetIndexArrow(0, 108);
IndicatorDigits(Digits + 1);
//----
SetIndexBuffer(1, ExtMapBuffer2); // bbMacd line
SetIndexStyle(1, DRAW_ARROW);
SetIndexArrow(1, 108);
IndicatorDigits(Digits + 1);
//----
SetIndexBuffer(2, ExtMapBuffer3); // Upperband line
SetIndexStyle(2, DRAW_LINE, STYLE_SOLID, 1);
IndicatorDigits(Digits + 1);
//----
SetIndexBuffer(3, ExtMapBuffer4); // Lowerband line
SetIndexStyle(3, DRAW_LINE, STYLE_SOLID, 1);
IndicatorDigits(Digits + 1);
//----
SetIndexBuffer(4, bbMacd);
SetIndexBuffer(5, Upperband);
SetIndexBuffer(6, Lowerband);
SetIndexBuffer(7, avg);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("BB MACD(" + FastLen + "," + SlowLen + "," + Length+")");
SetIndexLabel(0, "bbMacd");
SetIndexLabel(1, "Upperband");
SetIndexLabel(2, "Lowerband");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom BB_MACD |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars = IndicatorCounted();
if(counted_bars < 0) return(-1);
if(counted_bars > 0) counted_bars--;
if (barsCount > 0)
limit = MathMin(Bars - counted_bars,barsCount);
else limit = Bars - counted_bars;
//----
for(int i = 0; i < limit; i++)
bbMacd[i] = iMA(NULL, 0, FastLen, 0, MODE_EMA, PRICE_CLOSE, i) -
iMA(NULL, 0, SlowLen, 0, MODE_EMA, PRICE_CLOSE, i);
//----
for(i = 0; i < limit; i++)
{
avg[i] = iMAOnArray(bbMacd, 0, Length, 0, MODE_EMA, i);
sDev = iStdDevOnArray(bbMacd, 0, Length, MODE_EMA, 0, i);
Upperband[i] = avg[i] + (StDv * sDev);
Lowerband[i] = avg[i] - (StDv * sDev);
ExtMapBuffer1[i]=bbMacd[i]; // Uptrend bbMacd
ExtMapBuffer2[i]=bbMacd[i]; // downtrend bbMacd
ExtMapBuffer3[i]=Upperband[i]; // Upperband
ExtMapBuffer4[i]=Lowerband[i]; // Lowerband
//----
if(bbMacd[i] > bbMacd[i+1])
ExtMapBuffer2[i] = EMPTY_VALUE;
//----
if(bbMacd[i] < bbMacd[i+1])
ExtMapBuffer1[i] = EMPTY_VALUE;
}
//---- done
return(0);
}
//+------------------------------------------------------------------+
Ⅶ 外匯交易掛EA,雲伺服器1核1g夠用嗎
你掛多少個賬戶,如果一個賬戶的話是隨便夠用了,但是多個刷單EA的賬戶的話就不夠的。
Ⅷ 伺服器上運行的EA怎麼下載到我的電腦上面,外匯MT4的
找到mq4件和ex4文件,放到mt4軟體下的experts文件夾裡面就可以了。
我這邊沒有相關文件都是在公司伺服器上運行的...這個是屬於技術外的問題,可以通過非常規手段解決。簡單一點的話就是搞定管理員就可以了。
Ⅸ 如何破譯外匯ea 亂碼
外匯的MT4中就有自帶的兩個 EA交易系統 ,可以仿照一下。
Ⅹ mt4 ,ea。請高手給一個翻倍加倉的源碼
這樣是很容易爆倉的,小心為妙,還是慢慢總結自己的技術吧,這樣你的技術成熟之後,就會有如魚得水的感覺了