1190 lines
50 KiB
MQL5
1190 lines
50 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| ErrorMessages.tr.mqh |
|
||
|
//| joaopedrodev |
|
||
|
//| https://www.mql5.com/en/users/joaopedrodev |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#property copyright "joaopedrodev"
|
||
|
#property link "https://www.mql5.com/en/users/joaopedrodev"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Import struct
|
||
|
//+------------------------------------------------------------------+
|
||
|
#include "../Error.mqh"
|
||
|
void InitializeErrorsTurkish(MqlError &errors[])
|
||
|
{
|
||
|
//--- Free and resize
|
||
|
ArrayFree(errors);
|
||
|
ArrayResize(errors,274);
|
||
|
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Unknown error |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[0].code = 0;
|
||
|
errors[0].description = "Hata bulunamadı";
|
||
|
errors[0].constant = "ERROR_UNKNOWN";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Server error |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[1].code = 10004;
|
||
|
errors[1].description = "Yeni teklif";
|
||
|
errors[1].constant = "TRADE_RETCODE_REQUOTE";
|
||
|
//---
|
||
|
errors[2].code = 10006;
|
||
|
errors[2].description = "İstek reddedildi";
|
||
|
errors[2].constant = "TRADE_RETCODE_REJECT";
|
||
|
//---
|
||
|
errors[3].code = 10007;
|
||
|
errors[3].description = "İstek dealer tarafından iptal edildi";
|
||
|
errors[3].constant = "TRADE_RETCODE_CANCEL";
|
||
|
//---
|
||
|
errors[4].code = 10008;
|
||
|
errors[4].description = "Emir yerleştirildi";
|
||
|
errors[4].constant = "TRADE_RETCODE_PLACED";
|
||
|
//---
|
||
|
errors[5].code = 10009;
|
||
|
errors[5].description = "İstek tamamlandı";
|
||
|
errors[5].constant = "TRADE_RETCODE_DONE";
|
||
|
//---
|
||
|
errors[6].code = 10010;
|
||
|
errors[6].description = "İsteğin sadece bir kısmı tamamlandı";
|
||
|
errors[6].constant = "TRADE_RETCODE_DONE_PARTIAL";
|
||
|
//---
|
||
|
errors[7].code = 10011;
|
||
|
errors[7].description = "İstek işleme hatası";
|
||
|
errors[7].constant = "TRADE_RETCODE_ERROR";
|
||
|
//---
|
||
|
errors[8].code = 10012;
|
||
|
errors[8].description = "İstek zaman aşımına uğradığı için iptal edildi";
|
||
|
errors[8].constant = "TRADE_RETCODE_TIMEOUT";
|
||
|
//---
|
||
|
errors[9].code = 10013;
|
||
|
errors[9].description = "Geçersiz istek";
|
||
|
errors[9].constant = "TRADE_RETCODE_INVALID";
|
||
|
//---
|
||
|
errors[10].code = 10014;
|
||
|
|
||
|
errors[10].description = "İstek içinde geçersiz hacim";
|
||
|
errors[10].constant = "TRADE_RETCODE_INVALID_VOLUME";
|
||
|
//---
|
||
|
errors[11].code = 10015;
|
||
|
|
||
|
errors[11].description = "İstek içinde geçersiz fiyat";
|
||
|
errors[11].constant = "TRADE_RETCODE_INVALID_PRICE";
|
||
|
//---
|
||
|
errors[12].code = 10016;
|
||
|
|
||
|
errors[12].description = "İstek içinde geçersiz durdurma seviyeleri";
|
||
|
errors[12].constant = "TRADE_RETCODE_INVALID_STOPS";
|
||
|
//---
|
||
|
errors[13].code = 10017;
|
||
|
|
||
|
errors[13].description = "Alım satım devre dışı";
|
||
|
errors[13].constant = "TRADE_RETCODE_TRADE_DISABLED";
|
||
|
//---
|
||
|
errors[14].code = 10018;
|
||
|
|
||
|
errors[14].description = "Piyasa kapalı";
|
||
|
errors[14].constant = "TRADE_RETCODE_MARKET_CLOSED";
|
||
|
//---
|
||
|
errors[15].code = 10019;
|
||
|
|
||
|
errors[15].description = "İsteği tamamlamak için yeterli bakiye yok";
|
||
|
errors[15].constant = "TRADE_RETCODE_NO_MONEY";
|
||
|
//---
|
||
|
errors[16].code = 10020;
|
||
|
|
||
|
errors[16].description = "Fiyatlar değişti";
|
||
|
errors[16].constant = "TRADE_RETCODE_PRICE_CHANGED";
|
||
|
//---
|
||
|
errors[17].code = 10021;
|
||
|
|
||
|
errors[17].description = "İsteği işlemek için teklif yok";
|
||
|
errors[17].constant = "TRADE_RETCODE_PRICE_OFF";
|
||
|
//---
|
||
|
errors[18].code = 10022;
|
||
|
|
||
|
errors[18].description = "İstek içinde geçersiz emir sonlanma tarihi";
|
||
|
errors[18].constant = "TRADE_RETCODE_INVALID_EXPIRATION";
|
||
|
//---
|
||
|
errors[19].code = 10023;
|
||
|
|
||
|
errors[19].description = "Emir durumu değişti";
|
||
|
errors[19].constant = "TRADE_RETCODE_ORDER_CHANGED";
|
||
|
//---
|
||
|
errors[20].code = 10024;
|
||
|
|
||
|
errors[20].description = "Çok fazla istek";
|
||
|
errors[20].constant = "TRADE_RETCODE_TOO_MANY_REQUESTS";
|
||
|
//---
|
||
|
errors[21].code = 10025;
|
||
|
|
||
|
errors[21].description = "İstek içinde değişiklik yok";
|
||
|
errors[21].constant = "TRADE_RETCODE_NO_CHANGES";
|
||
|
//---
|
||
|
errors[22].code = 10026;
|
||
|
|
||
|
errors[22].description = "Otomatik alım satım sunucu tarafından devre dışı bırakıldı";
|
||
|
errors[22].constant = "TRADE_RETCODE_SERVER_DISABLES_AT";
|
||
|
//---
|
||
|
errors[23].code = 10027;
|
||
|
|
||
|
errors[23].description = "Otomatik alım satım istemci terminali tarafından devre dışı bırakıldı";
|
||
|
errors[23].constant = "TRADE_RETCODE_CLIENT_DISABLES_AT";
|
||
|
//---
|
||
|
errors[24].code = 10028;
|
||
|
|
||
|
errors[24].description = "İstek işleme için kilitlendi";
|
||
|
errors[24].constant = "TRADE_RETCODE_LOCKED";
|
||
|
//---
|
||
|
errors[25].code = 10029;
|
||
|
|
||
|
errors[25].description = "Emir veya pozisyon donduruldu";
|
||
|
errors[25].constant = "TRADE_RETCODE_FROZEN";
|
||
|
//---
|
||
|
errors[26].code = 10030;
|
||
|
|
||
|
errors[26].description = "Geçersiz emir doldurma tipi";
|
||
|
errors[26].constant = "TRADE_RETCODE_INVALID_FILL";
|
||
|
//---
|
||
|
errors[27].code = 10031;
|
||
|
|
||
|
errors[27].description = "Alım satım sunucusuna bağlantı yok";
|
||
|
errors[27].constant = "TRADE_RETCODE_CONNECTION";
|
||
|
//---
|
||
|
errors[28].code = 10032;
|
||
|
|
||
|
errors[28].description = "İşlem sadece gerçek hesaplar için geçerli";
|
||
|
errors[28].constant = "TRADE_RETCODE_ONLY_REAL";
|
||
|
//---
|
||
|
errors[29].code = 10033;
|
||
|
|
||
|
errors[29].description = "Bekleyen emir sayısı limite ulaştı";
|
||
|
errors[29].constant = "TRADE_RETCODE_LIMIT_ORDERS";
|
||
|
//---
|
||
|
errors[30].code = 10034;
|
||
|
|
||
|
errors[30].description = "Sembol için emir ve pozisyon hacmi limite ulaştı";
|
||
|
errors[30].constant = "TRADE_RETCODE_LIMIT_VOLUME";
|
||
|
//---
|
||
|
errors[31].code = 10035;
|
||
|
|
||
|
errors[31].description = "Yanlış veya yasak emir türü";
|
||
|
errors[31].constant = "TRADE_RETCODE_INVALID_ORDER";
|
||
|
//---
|
||
|
errors[32].code = 10036;
|
||
|
|
||
|
errors[32].description = "Belirtilen POSITION_IDENTIFIER ile pozisyon zaten kapatıldı";
|
||
|
errors[32].constant = "TRADE_RETCODE_POSITION_CLOSED";
|
||
|
//---
|
||
|
errors[33].code = 10038;
|
||
|
|
||
|
errors[33].description = "Kapatılacak hacim mevcut pozisyon hacmini aşıyor";
|
||
|
errors[33].constant = "TRADE_RETCODE_INVALID_CLOSE_VOLUME";
|
||
|
//---
|
||
|
errors[34].code = 10039;
|
||
|
|
||
|
errors[34].description = "Dokümantasyona bakınız";
|
||
|
errors[34].constant = "TRADE_RETCODE_CLOSE_ORDER_EXIST";
|
||
|
//---
|
||
|
errors[35].code = 10040;
|
||
|
|
||
|
errors[35].description = "Dokümantasyona bakınız";
|
||
|
errors[35].constant = "TRADE_RETCODE_LIMIT_POSITIONS";
|
||
|
//---
|
||
|
errors[36].code = 10041;
|
||
|
|
||
|
errors[36].description = "Bekleyen emir aktivasyon isteği reddedildi ve emir iptal edildi";
|
||
|
errors[36].constant = "TRADE_RETCODE_REJECT_CANCEL";
|
||
|
//---
|
||
|
errors[37].code = 10042;
|
||
|
|
||
|
errors[37].description = "Emir, sembol sadece 'Sadece uzun pozisyonlar' (POSITION_TYPE_BUY) olarak ayarlandığı için reddedildi";
|
||
|
errors[37].constant = "TRADE_RETCODE_LONG_ONLY";
|
||
|
//---
|
||
|
errors[38].code = 10043;
|
||
|
|
||
|
errors[38].description = "Emir, sembol sadece 'Sadece kısa pozisyonlar' (POSITION_TYPE_SELL) olarak ayarlandığı için reddedildi";
|
||
|
errors[38].constant = "TRADE_RETCODE_SHORT_ONLY";
|
||
|
//---
|
||
|
errors[39].code = 10044;
|
||
|
|
||
|
errors[39].description = "Emir, sembol 'Sadece kapat' olarak ayarlandığı için reddedildi";
|
||
|
errors[39].constant = "TRADE_RETCODE_CLOSE_ONLY";
|
||
|
//---
|
||
|
errors[40].code = 10045;
|
||
|
|
||
|
errors[40].description = "Emir, sembol 'Sadece kapat' olarak ayarlandığı için reddedildi";
|
||
|
errors[40].constant = "TRADE_RETCODE_FIFO_CLOSE";
|
||
|
//---
|
||
|
errors[41].code = 10046;
|
||
|
|
||
|
errors[41].description = "Emir, sembol için karşıt pozisyonlara izin verilmediği için reddedildi";
|
||
|
errors[41].constant = "TRADE_RETCODE_HEDGE_PROHIBITED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Errors sistem |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[42].code = 4001;
|
||
|
errors[42].description = "Beklenmeyen dahili hata";
|
||
|
errors[42].constant = "ERR_INTERNAL_ERROR";
|
||
|
//---
|
||
|
errors[43].code = 4002;
|
||
|
errors[43].description = "İstemci terminal fonksiyonunun dahili çağrısında yanlış parametre";
|
||
|
errors[43].constant = "ERR_WRONG_INTERNAL_PARAMETER";
|
||
|
//---
|
||
|
errors[44].code = 4003;
|
||
|
errors[44].description = "Sistem fonksiyonu çağrılırken yanlış parametre";
|
||
|
errors[44].constant = "ERR_INVALID_PARAMETER";
|
||
|
//---
|
||
|
errors[45].code = 4004;
|
||
|
errors[45].description = "Sistem fonksiyonunu yürütmek için yeterli bellek yok";
|
||
|
errors[45].constant = "ERR_NOT_ENOUGH_MEMORY";
|
||
|
//---
|
||
|
errors[46].code = 4005;
|
||
|
errors[46].description = "Yapı, string nesneleri ve/veya dinamik diziler ve/veya bu tür nesnelerin yapıları ve/veya sınıflar içeriyor";
|
||
|
errors[46].constant = "ERR_STRUCT_WITHOBJECTS_ORCLASS";
|
||
|
//---
|
||
|
errors[47].code = 4006;
|
||
|
errors[47].description = "Yanlış tipte, yanlış boyutta dizi veya dinamik dizinin bozuk nesnesi";
|
||
|
errors[47].constant = "ERR_INVALID_ARRAY";
|
||
|
//---
|
||
|
errors[48].code = 4007;
|
||
|
errors[48].description = "Dizinin yeniden boyutlandırılması için yeterli bellek yok veya statik dizinin boyutunu değiştirme girişimi";
|
||
|
errors[48].constant = "ERR_ARRAY_RESIZE_ERROR";
|
||
|
//---
|
||
|
errors[49].code = 4008;
|
||
|
errors[49].description = "Stringi yeniden boyutlandırmak için yeterli bellek yok";
|
||
|
errors[49].constant = "ERR_STRING_RESIZE_ERROR";
|
||
|
//---
|
||
|
errors[50].code = 4009;
|
||
|
errors[50].description = "Başlatılmamış string";
|
||
|
errors[50].constant = "ERR_NOTINITIALIZED_STRING";
|
||
|
//---
|
||
|
errors[51].code = 4010;
|
||
|
errors[51].description = "Geçersiz tarih ve/veya saat";
|
||
|
errors[51].constant = "ERR_INVALID_DATETIME";
|
||
|
//---
|
||
|
errors[52].code = 4011;
|
||
|
errors[52].description = "Dizideki toplam eleman sayısı 2147483647'yi geçemez";
|
||
|
errors[52].constant = "ERR_ARRAY_BAD_SIZE";
|
||
|
//---
|
||
|
errors[53].code = 4012;
|
||
|
errors[53].description = "Yanlış işaretçi";
|
||
|
errors[53].constant = "ERR_INVALID_POINTER";
|
||
|
//---
|
||
|
errors[54].code = 4013;
|
||
|
errors[54].description = "Yanlış işaretçi türü";
|
||
|
errors[54].constant = "ERR_INVALID_POINTER_TYPE";
|
||
|
//---
|
||
|
errors[55].code = 4014;
|
||
|
errors[55].description = "Sistem fonksiyonunun çağrılmasına izin verilmiyor";
|
||
|
errors[55].constant = "ERR_FUNCTION_NOT_ALLOWED";
|
||
|
//---
|
||
|
errors[56].code = 4015;
|
||
|
errors[56].description = "Dinamik ve statik kaynakların adları aynı";
|
||
|
errors[56].constant = "ERR_RESOURCE_NAME_DUPLICATED";
|
||
|
//---
|
||
|
errors[57].code = 4016;
|
||
|
errors[57].description = "EX5'te bu ada sahip kaynak bulunamadı";
|
||
|
errors[57].constant = "ERR_RESOURCE_NOT_FOUND";
|
||
|
//---
|
||
|
errors[58].code = 4017;
|
||
|
errors[58].description = "Desteklenmeyen kaynak türü veya boyutu 16 Mb'ı aşıyor";
|
||
|
errors[58].constant = "ERR_RESOURCE_UNSUPPOTED_TYPE";
|
||
|
//---
|
||
|
errors[59].code = 4018;
|
||
|
errors[59].description = "Kaynak adı 63 karakteri aşıyor";
|
||
|
errors[59].constant = "ERR_RESOURCE_NAME_IS_TOO_LONG";
|
||
|
//---
|
||
|
errors[60].code = 4019;
|
||
|
errors[60].description = "Matematiksel fonksiyonların hesaplanması sırasında taşma oluştu";
|
||
|
errors[60].constant = "ERR_MATH_OVERFLOW";
|
||
|
//---
|
||
|
errors[61].code = 4020;
|
||
|
errors[61].description = "Sleep() çağrıldıktan sonra test sonu aşıldı";
|
||
|
errors[61].constant = "ERR_SLEEP_ERROR";
|
||
|
//---
|
||
|
errors[62].code = 4022;
|
||
|
errors[62].description = "Testler dışarıdan zorla durduruldu. Örneğin, optimizasyon durdurulduğunda, görsel test penceresi kapatıldığında veya test ajanı durdurulduğunda";
|
||
|
errors[62].constant = "ERR_STOPPED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Charts |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[63].code = 4101;
|
||
|
errors[63].description = "Yanlış grafik kimliği";
|
||
|
errors[63].constant = "ERR_CHART_WRONG_ID";
|
||
|
//---
|
||
|
errors[64].code = 4102;
|
||
|
errors[64].description = "Grafik yanıt vermiyor";
|
||
|
errors[64].constant = "ERR_CHART_NO_REPLY";
|
||
|
//---
|
||
|
errors[65].code = 4103;
|
||
|
errors[65].description = "Grafik bulunamadı";
|
||
|
errors[65].constant = "ERR_CHART_NOT_FOUND";
|
||
|
//---
|
||
|
errors[66].code = 4104;
|
||
|
errors[66].description = "Olayı işlemek için grafikte Uzman Danışman yok";
|
||
|
errors[66].constant = "ERR_CHART_NO_EXPERT";
|
||
|
//---
|
||
|
errors[67].code = 4105;
|
||
|
errors[67].description = "Grafik açma hatası";
|
||
|
errors[67].constant = "ERR_CHART_CANNOT_OPEN";
|
||
|
//---
|
||
|
errors[68].code = 4106;
|
||
|
errors[68].description = "Grafiğin sembolü ve periyodu değiştirilemedi";
|
||
|
errors[68].constant = "ERR_CHART_CANNOT_CHANGE";
|
||
|
//---
|
||
|
errors[69].code = 4107;
|
||
|
errors[69].description = "Grafiklerle çalışan fonksiyon için yanlış parametre değeri";
|
||
|
errors[69].constant = "ERR_CHART_WRONG_PARAMETER";
|
||
|
//---
|
||
|
errors[70].code = 4108;
|
||
|
errors[70].description = "Zamanlayıcı oluşturulamadı";
|
||
|
errors[70].constant = "ERR_CHART_CANNOT_CREATE_TIMER";
|
||
|
//---
|
||
|
errors[71].code = 4109;
|
||
|
errors[71].description = "Yanlış grafik özelliği kimliği";
|
||
|
errors[71].constant = "ERR_CHART_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[72].code = 4110;
|
||
|
errors[72].description = "Ekran görüntüsü oluşturma hatası";
|
||
|
errors[72].constant = "ERR_CHART_SCREENSHOT_FAILED";
|
||
|
//---
|
||
|
errors[73].code = 4111;
|
||
|
errors[73].description = "Grafikte gezinme hatası";
|
||
|
errors[73].constant = "ERR_CHART_NAVIGATE_FAILED";
|
||
|
//---
|
||
|
errors[74].code = 4112;
|
||
|
errors[74].description = "Şablon uygulama hatası";
|
||
|
errors[74].constant = "ERR_CHART_TEMPLATE_FAILED";
|
||
|
//---
|
||
|
errors[75].code = 4113;
|
||
|
errors[75].description = "Göstergeleri içeren alt pencere bulunamadı";
|
||
|
errors[75].constant = "ERR_CHART_WINDOW_NOT_FOUND";
|
||
|
//---
|
||
|
errors[76].code = 4114;
|
||
|
errors[76].description = "Grafiğe gösterge eklenemedi";
|
||
|
errors[76].constant = "ERR_CHART_INDICATOR_CANNOT_ADD";
|
||
|
//---
|
||
|
errors[77].code = 4115;
|
||
|
errors[77].description = "Grafikten gösterge silinemedi";
|
||
|
errors[77].constant = "ERR_CHART_INDICATOR_CANNOT_DEL";
|
||
|
//---
|
||
|
errors[78].code = 4116;
|
||
|
errors[78].description = "Belirtilen grafikte gösterge bulunamadı";
|
||
|
errors[78].constant = "ERR_CHART_INDICATOR_NOT_FOUND";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Graphical Objects |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[79].code = 4201;
|
||
|
errors[79].description = "Grafiksel nesne ile çalışırken hata oluştu";
|
||
|
errors[79].constant = "ERR_OBJECT_ERROR";
|
||
|
//---
|
||
|
errors[80].code = 4202;
|
||
|
errors[80].description = "Grafiksel nesne bulunamadı";
|
||
|
errors[80].constant = "ERR_OBJECT_NOT_FOUND";
|
||
|
//---
|
||
|
errors[81].code = 4203;
|
||
|
errors[81].description = "Grafiksel nesnenin yanlış özellik kimliği";
|
||
|
errors[81].constant = "ERR_OBJECT_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[82].code = 4204;
|
||
|
errors[82].description = "Değere karşılık gelen tarih alınamadı";
|
||
|
errors[82].constant = "ERR_OBJECT_GETDATE_FAILED";
|
||
|
//---
|
||
|
errors[83].code = 4205;
|
||
|
errors[83].description = "Tarihe karşılık gelen değer alınamadı";
|
||
|
errors[83].constant = "ERR_OBJECT_GETVALUE_FAILED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| MarketInfo |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[84].code = 4301;
|
||
|
errors[84].description = "Bilinmeyen sembol";
|
||
|
errors[84].constant = "ERR_MARKET_UNKNOWN_SYMBOL";
|
||
|
//---
|
||
|
errors[85].code = 4302;
|
||
|
errors[85].description = "Sembol, Piyasa İzleme penceresinde seçilmedi";
|
||
|
errors[85].constant = "ERR_MARKET_NOT_SELECTED";
|
||
|
//---
|
||
|
errors[86].code = 4303;
|
||
|
errors[86].description = "Sembolün yanlış özellik kimliği";
|
||
|
errors[86].constant = "ERR_MARKET_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[87].code = 4304;
|
||
|
errors[87].description = "Son tikin zamanı bilinmiyor (tik yok)";
|
||
|
errors[87].constant = "ERR_MARKET_LASTTIME_UNKNOWN";
|
||
|
//---
|
||
|
errors[88].code = 4305;
|
||
|
errors[88].description = "Piyasa İzleme penceresinde sembol ekleme veya silme hatası";
|
||
|
errors[88].constant = "ERR_MARKET_SELECT_ERROR";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| History Access |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[89].code = 4401;
|
||
|
errors[89].description = "İstenen geçmiş bulunamadı";
|
||
|
errors[89].constant = "ERR_HISTORY_NOT_FOUND";
|
||
|
//---
|
||
|
errors[90].code = 4402;
|
||
|
errors[90].description = "Geçmişin yanlış özellik kimliği";
|
||
|
errors[90].constant = "ERR_HISTORY_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[91].code = 4403;
|
||
|
errors[91].description = "Geçmiş isteği zaman aşımı";
|
||
|
errors[91].constant = "ERR_HISTORY_TIMEOUT";
|
||
|
//---
|
||
|
errors[92].code = 4404;
|
||
|
errors[92].description = "Bar sayısı terminal ayarlarıyla sınırlı";
|
||
|
errors[92].constant = "ERR_HISTORY_BARS_LIMIT";
|
||
|
//---
|
||
|
errors[93].code = 4405;
|
||
|
errors[93].description = "Geçmiş yüklenirken birden fazla hata oluştu";
|
||
|
errors[93].constant = "ERR_HISTORY_LOAD_ERRORS";
|
||
|
//---
|
||
|
errors[94].code = 4407;
|
||
|
errors[94].description = "Alıcı dizi, istenen tüm verileri depolamak için çok küçük";
|
||
|
errors[94].constant = "ERR_HISTORY_SMALL_BUFFER";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Global Variables |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[95].code = 4501;
|
||
|
errors[95].description = "İstemci terminalinin global değişkeni bulunamadı";
|
||
|
errors[95].constant = "ERR_GLOBALVARIABLE_NOT_FOUND";
|
||
|
//---
|
||
|
errors[96].code = 4502;
|
||
|
errors[96].description = "Aynı ada sahip istemci terminalinin global değişkeni zaten mevcut";
|
||
|
errors[96].constant = "ERR_GLOBALVARIABLE_EXISTS";
|
||
|
//---
|
||
|
errors[97].code = 4503;
|
||
|
errors[97].description = "Global değişkenlerde değişiklik yok";
|
||
|
errors[97].constant = "ERR_GLOBALVARIABLE_NOT_MODIFIED";
|
||
|
//---
|
||
|
errors[98].code = 4504;
|
||
|
errors[98].description = "Global değişken değerlerinin bulunduğu dosya açılamadı ve okunamadı";
|
||
|
errors[98].constant = "ERR_GLOBALVARIABLE_CANNOTREAD";
|
||
|
//---
|
||
|
errors[99].code = 4505;
|
||
|
errors[99].description = "Global değişken değerlerinin bulunduğu dosya yazılamadı";
|
||
|
errors[99].constant = "ERR_GLOBALVARIABLE_CANNOTWRITE";
|
||
|
//---
|
||
|
errors[100].code = 4510;
|
||
|
errors[100].description = "E-posta gönderme başarısız";
|
||
|
errors[100].constant = "ERR_MAIL_SEND_FAILED";
|
||
|
//---
|
||
|
errors[101].code = 4511;
|
||
|
errors[101].description = "Ses çalma başarısız";
|
||
|
errors[101].constant = "ERR_PLAY_SOUND_FAILED";
|
||
|
//---
|
||
|
errors[102].code = 4512;
|
||
|
errors[102].description = "Yanlış program özelliği kimliği";
|
||
|
errors[102].constant = "ERR_MQL5_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[103].code = 4513;
|
||
|
errors[103].description = "Yanlış terminal özelliği kimliği";
|
||
|
errors[103].constant = "ERR_TERMINAL_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[104].code = 4514;
|
||
|
errors[104].description = "FTP dosya gönderimi başarısız";
|
||
|
errors[104].constant = "ERR_FTP_SEND_FAILED";
|
||
|
//---
|
||
|
errors[105].code = 4515;
|
||
|
errors[105].description = "Bildirim gönderilemedi";
|
||
|
errors[105].constant = "ERR_NOTIFICATION_SEND_FAILED";
|
||
|
//---
|
||
|
errors[106].code = 4516;
|
||
|
errors[106].description = "Bildirim göndermek için geçersiz parametre – SendNotification() fonksiyonuna boş string veya NULL gönderildi";
|
||
|
errors[106].constant = "ERR_NOTIFICATION_WRONG_PARAMETER";
|
||
|
//---
|
||
|
errors[107].code = 4517;
|
||
|
errors[107].description = "Terminalde yanlış bildirim ayarları (ID belirtilmemiş veya izin verilmemiş)";
|
||
|
errors[107].constant = "ERR_NOTIFICATION_WRONG_SETTINGS";
|
||
|
//---
|
||
|
errors[108].code = 4518;
|
||
|
errors[108].description = "Bildirim gönderme sıklığı aşıldı";
|
||
|
errors[108].constant = "ERR_NOTIFICATION_TOO_FREQUENT";
|
||
|
//---
|
||
|
errors[109].code = 4519;
|
||
|
errors[109].description = "FTP sunucusu yapılandırma özniteliklerinde belirtilmemiş";
|
||
|
errors[109].constant = "ERR_FTP_NOSERVER";
|
||
|
//---
|
||
|
errors[110].code = 4520;
|
||
|
errors[110].description = "FTP giriş bilgisi yapılandırma özniteliklerinde belirtilmemiş";
|
||
|
errors[110].constant = "ERR_FTP_NOLOGIN";
|
||
|
//---
|
||
|
errors[111].code = 4521;
|
||
|
errors[111].description = "Dosya mevcut değil";
|
||
|
errors[111].constant = "ERR_FTP_FILE_ERROR";
|
||
|
//---
|
||
|
errors[112].code = 4522;
|
||
|
errors[112].description = "FTP sunucusuna bağlanılamadı";
|
||
|
errors[112].constant = "ERR_FTP_CONNECT_FAILED";
|
||
|
//---
|
||
|
errors[113].code = 4523;
|
||
|
errors[113].description = "FTP sunucusunda dosya yükleme dizini bulunamadı";
|
||
|
errors[113].constant = "ERR_FTP_CHANGEDIR";
|
||
|
//---
|
||
|
errors[114].code = 4524;
|
||
|
errors[114].description = "FTP sunucusuyla bağlantı kapatıldı";
|
||
|
errors[114].constant = "ERR_FTP_CLOSED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Custom Indicator Buffers |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[115].code = 4601;
|
||
|
errors[115].description = "Göstergeler için yeterli bellek yok";
|
||
|
errors[115].constant = "ERR_BUFFERS_NO_MEMORY";
|
||
|
//---
|
||
|
errors[116].code = 4602;
|
||
|
errors[116].description = "Yanlış gösterge tamponu indeksi";
|
||
|
errors[116].constant = "ERR_BUFFERS_WRONG_INDEX";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Custom Indicator Properties |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[117].code = 4603;
|
||
|
errors[117].description = "Yanlış özel gösterge özelliği kimliği";
|
||
|
errors[117].constant = "ERR_CUSTOM_WRONG_PROPERTY";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Account |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[118].code = 4701;
|
||
|
errors[118].description = "Yanlış hesap özelliği kimliği";
|
||
|
errors[118].constant = "ERR_ACCOUNT_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[119].code = 4751;
|
||
|
errors[119].description = "Yanlış işlem özelliği kimliği";
|
||
|
errors[119].constant = "ERR_TRADE_WRONG_PROPERTY";
|
||
|
//---
|
||
|
errors[120].code = 4752;
|
||
|
errors[120].description = "Uzman Danışmanlar ile işlem yapmak yasaklandı";
|
||
|
errors[120].constant = "ERR_TRADE_DISABLED";
|
||
|
//---
|
||
|
errors[121].code = 4753;
|
||
|
errors[121].description = "Pozisyon bulunamadı";
|
||
|
errors[121].constant = "ERR_TRADE_POSITION_NOT_FOUND";
|
||
|
//---
|
||
|
errors[122].code = 4754;
|
||
|
errors[122].description = "Emir bulunamadı";
|
||
|
errors[122].constant = "ERR_TRADE_ORDER_NOT_FOUND";
|
||
|
//---
|
||
|
errors[123].code = 4755;
|
||
|
errors[123].description = "İşlem bulunamadı";
|
||
|
errors[123].constant = "ERR_TRADE_DEAL_NOT_FOUND";
|
||
|
//---
|
||
|
errors[124].code = 4756;
|
||
|
errors[124].description = "İşlem isteği gönderilemedi";
|
||
|
errors[124].constant = "ERR_TRADE_SEND_FAILED";
|
||
|
//---
|
||
|
errors[125].code = 4758;
|
||
|
errors[125].description = "İşlem endeks değeri hesaplanamadı";
|
||
|
errors[125].constant = "ERR_TRADE_CALC_FAILED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Indicators |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[126].code = 4801;
|
||
|
errors[126].description = "Bilinmeyen sembol";
|
||
|
errors[126].constant = "ERR_INDICATOR_UNKNOWN_SYMBOL";
|
||
|
//---
|
||
|
errors[127].code = 4802;
|
||
|
errors[127].description = "Gösterge oluşturulamadı";
|
||
|
errors[127].constant = "ERR_INDICATOR_CANNOT_CREATE";
|
||
|
//---
|
||
|
errors[128].code = 4803;
|
||
|
errors[128].description = "Gösterge eklemek için yeterli bellek yok";
|
||
|
errors[128].constant = "ERR_INDICATOR_NO_MEMORY";
|
||
|
//---
|
||
|
errors[129].code = 4804;
|
||
|
errors[129].description = "Gösterge başka bir göstergeye uygulanamaz";
|
||
|
errors[129].constant = "ERR_INDICATOR_CANNOT_APPLY";
|
||
|
//---
|
||
|
errors[130].code = 4805;
|
||
|
errors[130].description = "Gösterge grafiğe eklenemedi";
|
||
|
errors[130].constant = "ERR_INDICATOR_CANNOT_ADD";
|
||
|
//---
|
||
|
errors[131].code = 4806;
|
||
|
errors[131].description = "İstenen veri bulunamadı";
|
||
|
errors[131].constant = "ERR_INDICATOR_DATA_NOT_FOUND";
|
||
|
//---
|
||
|
errors[132].code = 4807;
|
||
|
errors[132].description = "Yanlış gösterge tanıtıcısı";
|
||
|
errors[132].constant = "ERR_INDICATOR_WRONG_HANDLE";
|
||
|
//---
|
||
|
errors[133].code = 4808;
|
||
|
errors[133].description = "Gösterge oluşturulurken yanlış parametre sayısı";
|
||
|
errors[133].constant = "ERR_INDICATOR_WRONG_PARAMETERS";
|
||
|
//---
|
||
|
errors[134].code = 4809;
|
||
|
errors[134].description = "Gösterge oluşturulurken parametre yok";
|
||
|
errors[134].constant = "ERR_INDICATOR_PARAMETERS_MISSING";
|
||
|
//---
|
||
|
errors[135].code = 4810;
|
||
|
errors[135].description = "Dizideki ilk parametre özel göstergenin adı olmalıdır";
|
||
|
errors[135].constant = "ERR_INDICATOR_CUSTOM_NAME";
|
||
|
//---
|
||
|
errors[136].code = 4811;
|
||
|
errors[136].description = "Gösterge oluşturulurken dizide geçersiz parametre türü";
|
||
|
errors[136].constant = "ERR_INDICATOR_PARAMETER_TYPE";
|
||
|
//---
|
||
|
errors[137].code = 4812;
|
||
|
errors[137].description = "İstenen gösterge tamponunun yanlış indeksi";
|
||
|
errors[137].constant = "ERR_INDICATOR_WRONG_INDEX";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Depth of Market |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[138].code = 4901;
|
||
|
errors[138].description = "Derinlik tablosu eklenemedi";
|
||
|
errors[138].constant = "ERR_BOOKS_CANNOT_ADD";
|
||
|
//---
|
||
|
errors[139].code = 4902;
|
||
|
errors[139].description = "Derinlik tablosu kaldırılamadı";
|
||
|
errors[139].constant = "ERR_BOOKS_CANNOT_DELETE";
|
||
|
//---
|
||
|
errors[140].code = 4903;
|
||
|
errors[140].description = "Derinlik tablosu verileri alınamadı";
|
||
|
errors[140].constant = "ERR_BOOKS_CANNOT_GET";
|
||
|
//---
|
||
|
errors[141].code = 4904;
|
||
|
errors[141].description = "Yeni derinlik tablosu verileri için abone olurken hata oluştu";
|
||
|
errors[141].constant = "ERR_BOOKS_CANNOT_SUBSCRIBE";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| File Operations |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[142].code = 5001;
|
||
|
errors[142].description = "Aynı anda 64'ten fazla dosya açılamaz";
|
||
|
errors[142].constant = "ERR_TOO_MANY_FILES";
|
||
|
//---
|
||
|
errors[143].code = 5002;
|
||
|
errors[143].description = "Geçersiz dosya adı";
|
||
|
errors[143].constant = "ERR_WRONG_FILENAME";
|
||
|
//---
|
||
|
errors[144].code = 5003;
|
||
|
errors[144].description = "Dosya adı çok uzun";
|
||
|
errors[144].constant = "ERR_TOO_LONG_FILENAME";
|
||
|
//---
|
||
|
errors[145].code = 5004;
|
||
|
errors[145].description = "Dosya açma hatası";
|
||
|
errors[145].constant = "ERR_CANNOT_OPEN_FILE";
|
||
|
//---
|
||
|
errors[146].code = 5005;
|
||
|
errors[146].description = "Okuma için yeterli önbellek belleği yok";
|
||
|
errors[146].constant = "ERR_FILE_CACHEBUFFER_ERROR";
|
||
|
//---
|
||
|
errors[147].code = 5006;
|
||
|
errors[147].description = "Dosya silme hatası";
|
||
|
errors[147].constant = "ERR_CANNOT_DELETE_FILE";
|
||
|
//---
|
||
|
errors[148].code = 5007;
|
||
|
errors[148].description = "Bu tanıtıcıya sahip bir dosya kapatıldı veya hiç açılmadı";
|
||
|
errors[148].constant = "ERR_INVALID_FILEHANDLE";
|
||
|
//---
|
||
|
errors[149].code = 5008;
|
||
|
errors[149].description = "Yanlış dosya tanıtıcısı";
|
||
|
errors[149].constant = "ERR_WRONG_FILEHANDLE";
|
||
|
//---
|
||
|
errors[150].code = 5009;
|
||
|
errors[150].description = "Dosya yazmak için açık olmalı";
|
||
|
errors[150].constant = "ERR_FILE_NOTTOWRITE";
|
||
|
//---
|
||
|
errors[151].code = 5010;
|
||
|
errors[151].description = "Dosya okumak için açık olmalı";
|
||
|
errors[151].constant = "ERR_FILE_NOTTOREAD";
|
||
|
//---
|
||
|
errors[152].code = 5011;
|
||
|
errors[152].description = "Dosya ikili olarak açık olmalı";
|
||
|
errors[152].constant = "ERR_FILE_NOTBIN";
|
||
|
//---
|
||
|
errors[153].code = 5012;
|
||
|
errors[153].description = "Dosya metin olarak açık olmalı";
|
||
|
errors[153].constant = "ERR_FILE_NOTTXT";
|
||
|
//---
|
||
|
errors[154].code = 5013;
|
||
|
errors[154].description = "Dosya metin veya CSV olarak açık olmalı";
|
||
|
errors[154].constant = "ERR_FILE_NOTTXTORCSV";
|
||
|
//---
|
||
|
errors[155].code = 5014;
|
||
|
errors[155].description = "Dosya CSV olarak açık olmalı";
|
||
|
errors[155].constant = "ERR_FILE_NOTCSV";
|
||
|
//---
|
||
|
errors[156].code = 5015;
|
||
|
errors[156].description = "Dosya okuma hatası";
|
||
|
errors[156].constant = "ERR_FILE_READERROR";
|
||
|
//---
|
||
|
errors[157].code = 5016;
|
||
|
errors[157].description = "Dosya ikili olarak açık olduğunda string boyutu belirtilmeli";
|
||
|
errors[157].constant = "ERR_FILE_BINSTRINGSIZE";
|
||
|
//---
|
||
|
errors[158].code = 5017;
|
||
|
errors[158].description = "String dizileri için metin dosyası, diğer diziler için ikili dosya kullanılmalı";
|
||
|
errors[158].constant = "ERR_INCOMPATIBLE_FILE";
|
||
|
//---
|
||
|
errors[159].code = 5018;
|
||
|
errors[159].description = "Bu bir dosya değil, bir dizin";
|
||
|
errors[159].constant = "ERR_FILE_IS_DIRECTORY";
|
||
|
//---
|
||
|
errors[160].code = 5019;
|
||
|
errors[160].description = "Dosya mevcut değil";
|
||
|
errors[160].constant = "ERR_FILE_NOT_EXIST";
|
||
|
//---
|
||
|
errors[161].code = 5020;
|
||
|
errors[161].description = "Dosya üzerine yazılamıyor";
|
||
|
errors[161].constant = "ERR_FILE_CANNOT_REWRITE";
|
||
|
//---
|
||
|
errors[162].code = 5021;
|
||
|
errors[162].description = "Geçersiz dizin adı";
|
||
|
errors[162].constant = "ERR_WRONG_DIRECTORYNAME";
|
||
|
//---
|
||
|
errors[163].code = 5022;
|
||
|
errors[163].description = "Dizin mevcut değil";
|
||
|
errors[163].constant = "ERR_DIRECTORY_NOT_EXIST";
|
||
|
//---
|
||
|
errors[164].code = 5023;
|
||
|
errors[164].description = "Bu bir dosya, dizin değil";
|
||
|
errors[164].constant = "ERR_FILE_ISNOT_DIRECTORY";
|
||
|
//---
|
||
|
errors[165].code = 5024;
|
||
|
errors[165].description = "Dizin silinemiyor";
|
||
|
errors[165].constant = "ERR_CANNOT_DELETE_DIRECTORY";
|
||
|
//---
|
||
|
errors[166].code = 5025;
|
||
|
errors[166].description = "Dizin temizlenemedi (muhtemelen bir veya daha fazla dosya kilitli ve silme işlemi başarısız oldu)";
|
||
|
errors[166].constant = "ERR_CANNOT_CLEAN_DIRECTORY";
|
||
|
//---
|
||
|
errors[167].code = 5026;
|
||
|
errors[167].description = "Kaynak dosyaya yazılamadı";
|
||
|
errors[167].constant = "ERR_FILE_WRITEERROR";
|
||
|
//---
|
||
|
errors[168].code = 5027;
|
||
|
errors[168].description = "CSV dosyasından sonraki veri bloğu okunamadı (FileReadString, FileReadNumber, FileReadDatetime, FileReadBool), çünkü dosya sonuna ulaşıldı";
|
||
|
errors[168].constant = "ERR_FILE_ENDOFFILE";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| String Casting |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[169].code = 5030;
|
||
|
errors[169].description = "Stringde tarih yok";
|
||
|
errors[169].constant = "ERR_NO_STRING_DATE";
|
||
|
//---
|
||
|
errors[170].code = 5031;
|
||
|
errors[170].description = "Stringde yanlış tarih";
|
||
|
errors[170].constant = "ERR_WRONG_STRING_DATE";
|
||
|
//---
|
||
|
errors[171].code = 5032;
|
||
|
errors[171].description = "Stringde yanlış saat";
|
||
|
errors[171].constant = "ERR_WRONG_STRING_TIME";
|
||
|
//---
|
||
|
errors[172].code = 5033;
|
||
|
errors[172].description = "Stringi tarihe dönüştürürken hata oluştu";
|
||
|
errors[172].constant = "ERR_STRING_TIME_ERROR";
|
||
|
//---
|
||
|
errors[173].code = 5034;
|
||
|
errors[173].description = "String için yeterli bellek yok";
|
||
|
errors[173].constant = "ERR_STRING_OUT_OF_MEMORY";
|
||
|
//---
|
||
|
errors[174].code = 5035;
|
||
|
errors[174].description = "String uzunluğu beklenenden kısa";
|
||
|
errors[174].constant = "ERR_STRING_SMALL_LEN";
|
||
|
//---
|
||
|
errors[175].code = 5036;
|
||
|
errors[175].description = "Sayı çok büyük, ULONG_MAX'tan büyük";
|
||
|
errors[175].constant = "ERR_STRING_TOO_BIGNUMBER";
|
||
|
//---
|
||
|
errors[176].code = 5037;
|
||
|
errors[176].description = "Geçersiz biçim stringi";
|
||
|
errors[176].constant = "ERR_WRONG_FORMATSTRING";
|
||
|
//---
|
||
|
errors[177].code = 5038;
|
||
|
errors[177].description = "Biçim belirteçlerinin sayısı parametre sayısından fazla";
|
||
|
errors[177].constant = "ERR_TOO_MANY_FORMATTERS";
|
||
|
//---
|
||
|
errors[178].code = 5039;
|
||
|
errors[178].description = "Parametre sayısı biçim belirteçlerinden fazla";
|
||
|
errors[178].constant = "ERR_TOO_MANY_PARAMETERS";
|
||
|
//---
|
||
|
errors[179].code = 5040;
|
||
|
errors[179].description = "Hatalı string parametresi";
|
||
|
errors[179].constant = "ERR_WRONG_STRING_PARAMETER";
|
||
|
//---
|
||
|
errors[180].code = 5041;
|
||
|
errors[180].description = "Stringdeki pozisyon aralığın dışında";
|
||
|
errors[180].constant = "ERR_STRINGPOS_OUTOFRANGE";
|
||
|
//---
|
||
|
errors[181].code = 5042;
|
||
|
errors[181].description = "Stringin sonuna 0 eklendi, gereksiz bir işlem";
|
||
|
errors[181].constant = "ERR_STRING_ZEROADDED";
|
||
|
//---
|
||
|
errors[182].code = 5043;
|
||
|
errors[182].description = "Stringe dönüştürülürken bilinmeyen veri türü";
|
||
|
errors[182].constant = "ERR_STRING_UNKNOWNTYPE";
|
||
|
//---
|
||
|
errors[183].code = 5044;
|
||
|
errors[183].description = "Hatalı string nesnesi";
|
||
|
errors[183].constant = "ERR_WRONG_STRING_OBJECT";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Operations with Arrays |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[184].code = 5050;
|
||
|
errors[184].description = "Uyumsuz diziler kopyalanıyor. String dizi sadece string diziye, sayısal dizi sadece sayısal diziye kopyalanabilir";
|
||
|
errors[184].constant = "ERR_INCOMPATIBLE_ARRAYS";
|
||
|
//---
|
||
|
errors[185].code = 5051;
|
||
|
errors[185].description = "Alıcı dizi AS_SERIES olarak tanımlanmış ve boyutu yetersiz";
|
||
|
errors[185].constant = "ERR_SMALL_ASSERIES_ARRAY";
|
||
|
//---
|
||
|
errors[186].code = 5052;
|
||
|
errors[186].description = "Dizi çok küçük, başlangıç pozisyonu dizinin dışında";
|
||
|
errors[186].constant = "ERR_SMALL_ARRAY";
|
||
|
//---
|
||
|
errors[187].code = 5053;
|
||
|
errors[187].description = "Sıfır uzunlukta dizi";
|
||
|
errors[187].constant = "ERR_ZEROSIZE_ARRAY";
|
||
|
//---
|
||
|
errors[188].code = 5054;
|
||
|
errors[188].description = "Sayısal dizi olmalı";
|
||
|
errors[188].constant = "ERR_NUMBER_ARRAYS_ONLY";
|
||
|
//---
|
||
|
errors[189].code = 5055;
|
||
|
errors[189].description = "Tek boyutlu dizi olmalı";
|
||
|
errors[189].constant = "ERR_ONE_DIMENSIONAL_ARRAY";
|
||
|
//---
|
||
|
errors[190].code = 5056;
|
||
|
errors[190].description = "Zaman serisi kullanılamaz";
|
||
|
errors[190].constant = "ERR_SERIES_ARRAY";
|
||
|
//---
|
||
|
errors[191].code = 5057;
|
||
|
errors[191].description = "Sadece double türünde dizi olmalı";
|
||
|
errors[191].constant = "ERR_DOUBLE_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[192].code = 5058;
|
||
|
errors[192].description = "Sadece float türünde dizi olmalı";
|
||
|
errors[192].constant = "ERR_FLOAT_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[193].code = 5059;
|
||
|
errors[193].description = "Sadece long türünde dizi olmalı";
|
||
|
errors[193].constant = "ERR_LONG_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[194].code = 5060;
|
||
|
errors[194].description = "Sadece int türünde dizi olmalı";
|
||
|
errors[194].constant = "ERR_INT_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[195].code = 5061;
|
||
|
errors[195].description = "Sadece short türünde dizi olmalı";
|
||
|
errors[195].constant = "ERR_SHORT_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[196].code = 5062;
|
||
|
errors[196].description = "Sadece char türünde dizi olmalı";
|
||
|
errors[196].constant = "ERR_CHAR_ARRAY_ONLY";
|
||
|
//---
|
||
|
errors[197].code = 5063;
|
||
|
errors[197].description = "Sadece string türünde dizi olmalı";
|
||
|
errors[197].constant = "ERR_STRING_ARRAY_ONLY";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Operations with OpenCL |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[198].code = 5100;
|
||
|
errors[198].description = "OpenCL fonksiyonları bu bilgisayarda desteklenmiyor";
|
||
|
errors[198].constant = "ERR_OPENCL_NOT_SUPPORTED";
|
||
|
//---
|
||
|
errors[199].code = 5101;
|
||
|
errors[199].description = "OpenCL çalıştırılırken dahili hata oluştu";
|
||
|
errors[199].constant = "ERR_OPENCL_INTERNAL";
|
||
|
//---
|
||
|
errors[200].code = 5102;
|
||
|
errors[200].description = "Geçersiz OpenCL tanıtıcısı";
|
||
|
errors[200].constant = "ERR_OPENCL_INVALID_HANDLE";
|
||
|
//---
|
||
|
errors[201].code = 5103;
|
||
|
errors[201].description = "OpenCL bağlamı oluşturulurken hata oluştu";
|
||
|
errors[201].constant = "ERR_OPENCL_CONTEXT_CREATE";
|
||
|
//---
|
||
|
errors[202].code = 5104;
|
||
|
errors[202].description = "OpenCL'de yürütme kuyruğu oluşturulamadı";
|
||
|
errors[202].constant = "ERR_OPENCL_QUEUE_CREATE";
|
||
|
//---
|
||
|
errors[203].code = 5105;
|
||
|
errors[203].description = "OpenCL programı derlenirken hata oluştu";
|
||
|
errors[203].constant = "ERR_OPENCL_PROGRAM_CREATE";
|
||
|
//---
|
||
|
errors[204].code = 5106;
|
||
|
errors[204].description = "Çekirdek adı çok uzun (OpenCL çekirdeği)";
|
||
|
errors[204].constant = "ERR_OPENCL_TOO_LONG_KERNEL_NAME";
|
||
|
//---
|
||
|
errors[205].code = 5107;
|
||
|
errors[205].description = "OpenCL çekirdeği oluşturulurken hata oluştu";
|
||
|
errors[205].constant = "ERR_OPENCL_KERNEL_CREATE";
|
||
|
//---
|
||
|
errors[206].code = 5108;
|
||
|
errors[206].description = "OpenCL çekirdeği için parametreler ayarlanırken hata oluştu";
|
||
|
errors[206].constant = "ERR_OPENCL_SET_KERNEL_PARAMETER";
|
||
|
//---
|
||
|
errors[207].code = 5109;
|
||
|
errors[207].description = "OpenCL programı yürütülürken hata oluştu";
|
||
|
errors[207].constant = "ERR_OPENCL_EXECUTE";
|
||
|
//---
|
||
|
errors[209].code = 5110;
|
||
|
errors[209].description = "Geçersiz OpenCL tampon boyutu";
|
||
|
errors[209].constant = "ERR_OPENCL_WRONG_BUFFER_SIZE";
|
||
|
//---
|
||
|
errors[210].code = 5111;
|
||
|
errors[210].description = "Geçersiz OpenCL tampon ofseti";
|
||
|
errors[210].constant = "ERR_OPENCL_WRONG_BUFFER_OFFSET";
|
||
|
//---
|
||
|
errors[211].code = 5112;
|
||
|
errors[211].description = "OpenCL tamponu oluşturulamadı";
|
||
|
errors[211].constant = "ERR_OPENCL_BUFFER_CREATE";
|
||
|
//---
|
||
|
errors[212].code = 5113;
|
||
|
errors[212].description = "Maksimum OpenCL nesne sayısı aşıldı";
|
||
|
errors[212].constant = "ERR_OPENCL_TOO_MANY_OBJECTS";
|
||
|
//---
|
||
|
errors[213].code = 5114;
|
||
|
errors[213].description = "OpenCL aygıtı seçilirken hata oluştu";
|
||
|
errors[213].constant = "ERR_OPENCL_SELECTDEVICE";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Working with databases |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[214].code = 5120;
|
||
|
errors[214].description = "Dahili veritabanı hatası";
|
||
|
errors[214].constant = "ERR_DATABASE_INTERNAL";
|
||
|
//---
|
||
|
errors[215].code = 5121;
|
||
|
errors[215].description = "Geçersiz veritabanı tanıtıcısı";
|
||
|
errors[215].constant = "ERR_DATABASE_INVALID_HANDLE";
|
||
|
//---
|
||
|
errors[216].code = 5122;
|
||
|
errors[216].description = "Maksimum veritabanı nesne sayısı aşıldı";
|
||
|
errors[216].constant = "ERR_DATABASE_TOO_MANY_OBJECTS";
|
||
|
//---
|
||
|
errors[217].code = 5123;
|
||
|
errors[217].description = "Veritabanına bağlanırken hata oluştu";
|
||
|
errors[217].constant = "ERR_DATABASE_CONNECT";
|
||
|
//---
|
||
|
errors[218].code = 5124;
|
||
|
errors[218].description = "Sorgu yürütme hatası";
|
||
|
errors[218].constant = "ERR_DATABASE_EXECUTE";
|
||
|
//---
|
||
|
errors[219].code = 5125;
|
||
|
errors[219].description = "Sorgu oluşturulurken hata oluştu";
|
||
|
errors[219].constant = "ERR_DATABASE_PREPARE";
|
||
|
//---
|
||
|
errors[220].code = 5126;
|
||
|
errors[220].description = "Okunacak daha fazla veri yok";
|
||
|
errors[220].constant = "ERR_DATABASE_NO_MORE_DATA";
|
||
|
//---
|
||
|
errors[221].code = 5127;
|
||
|
errors[221].description = "Sorguda bir sonraki kayda geçerken hata oluştu";
|
||
|
errors[221].constant = "ERR_DATABASE_STEP";
|
||
|
//---
|
||
|
errors[222].code = 5128;
|
||
|
errors[222].description = "Sorgu sonuçlarını okumak için veriler henüz hazır değil";
|
||
|
errors[222].constant = "ERR_DATABASE_NOT_READY";
|
||
|
//---
|
||
|
errors[223].code = 5129;
|
||
|
errors[223].description = "SQL sorgusunda otomatik parametre bağlama hatası";
|
||
|
errors[223].constant = "ERR_DATABASE_BIND_PARAMETERS";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Operations with WebRequest |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[224].code = 5200;
|
||
|
errors[224].description = "Geçersiz URL";
|
||
|
errors[224].constant = "ERR_WEBREQUEST_INVALID_ADDRESS";
|
||
|
//---
|
||
|
errors[225].code = 5201;
|
||
|
errors[225].description = "Belirtilen URL'ye bağlanılamadı";
|
||
|
errors[225].constant = "ERR_WEBREQUEST_CONNECT_FAILED";
|
||
|
//---
|
||
|
errors[226].code = 5202;
|
||
|
errors[226].description = "Zaman aşımı";
|
||
|
errors[226].constant = "ERR_WEBREQUEST_TIMEOUT";
|
||
|
//---
|
||
|
errors[227].code = 5203;
|
||
|
errors[227].description = "HTTP isteği başarısız oldu";
|
||
|
errors[227].constant = "ERR_WEBREQUEST_REQUEST_FAILED";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Operations with network (sockets) |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[228].code = 5270;
|
||
|
errors[228].description = "Fonksiyona geçersiz soket tanıtıcısı iletildi";
|
||
|
errors[228].constant = "ERR_NETSOCKET_INVALIDHANDLE";
|
||
|
//---
|
||
|
errors[229].code = 5271;
|
||
|
errors[229].description = "Çok fazla açık soket (maksimum 128)";
|
||
|
errors[229].constant = "ERR_NETSOCKET_TOO_MANY_OPENED";
|
||
|
//---
|
||
|
errors[230].code = 5272;
|
||
|
errors[230].description = "Uzak ana makineye bağlanırken hata oluştu";
|
||
|
errors[230].constant = "ERR_NETSOCKET_CANNOT_CONNECT";
|
||
|
//---
|
||
|
errors[231].code = 5273;
|
||
|
errors[231].description = "Soket üzerinden veri gönderme/alma hatası";
|
||
|
errors[231].constant = "ERR_NETSOCKET_IO_ERROR";
|
||
|
//---
|
||
|
errors[232].code = 5274;
|
||
|
errors[232].description = "Güvenli bağlantı kurulurken hata oluştu (TLS El Sıkışması)";
|
||
|
errors[232].constant = "ERR_NETSOCKET_HANDSHAKE_FAILED";
|
||
|
//---
|
||
|
errors[233].code = 5275;
|
||
|
errors[233].description = "Bağlantıyı koruyan sertifika hakkında bilgi yok";
|
||
|
errors[233].constant = "ERR_NETSOCKET_NO_CERTIFICATE";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Custom Symbols |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[234].code = 5300;
|
||
|
errors[234].description = "Özel sembol belirtilmeli";
|
||
|
errors[234].constant = "ERR_NOT_CUSTOM_SYMBOL";
|
||
|
//---
|
||
|
errors[235].code = 5301;
|
||
|
errors[235].description = "Geçersiz özel sembol adı. Sembol adında yalnızca noktalama işareti, boşluk ve özel karakterler olmadan Latin harfleri kullanılabilir ('.', '_', '&' ve '#' kullanılabilir). <, >, :, ', /, |, ?, * kullanılması önerilmez";
|
||
|
errors[235].constant = "ERR_CUSTOM_SYMBOL_WRONG_NAME";
|
||
|
//---
|
||
|
errors[236].code = 5302;
|
||
|
errors[236].description = "Özel sembol adı çok uzun. Ad, son 0 dahil 32 karakteri geçmemelidir";
|
||
|
errors[236].constant = "ERR_CUSTOM_SYMBOL_NAME_LONG";
|
||
|
//---
|
||
|
errors[237].code = 5303;
|
||
|
errors[237].description = "Özel sembol yolu çok uzun. Yol, 'Custom\\', sembol adı, grup ayırıcılar ve son 0 dahil 128 karakteri geçmemelidir";
|
||
|
errors[237].constant = "ERR_CUSTOM_SYMBOL_PATH_LONG";
|
||
|
//---
|
||
|
errors[238].code = 5304;
|
||
|
errors[238].description = "Bu ada sahip özel sembol zaten mevcut";
|
||
|
errors[238].constant = "ERR_CUSTOM_SYMBOL_EXIST";
|
||
|
//---
|
||
|
errors[239].code = 5305;
|
||
|
errors[239].description = "Özel sembol oluşturulurken, silinirken veya değiştirilirken hata oluştu";
|
||
|
errors[239].constant = "ERR_CUSTOM_SYMBOL_ERROR";
|
||
|
//---
|
||
|
errors[240].code = 5306;
|
||
|
errors[240].description = "Piyasa İzleme'de seçili olan özel sembolü silme girişimi";
|
||
|
errors[240].constant = "ERR_CUSTOM_SYMBOL_SELECTED";
|
||
|
//---
|
||
|
errors[241].code = 5307;
|
||
|
errors[241].description = "Geçersiz özel sembol özelliği";
|
||
|
errors[241].constant = "ERR_CUSTOM_SYMBOL_PROPERTY_WRONG";
|
||
|
//---
|
||
|
errors[242].code = 5308;
|
||
|
errors[242].description = "Özel sembol özelliği ayarlanırken yanlış parametre";
|
||
|
errors[242].constant = "ERR_CUSTOM_SYMBOL_PARAMETER_ERROR";
|
||
|
//---
|
||
|
errors[243].code = 5309;
|
||
|
errors[243].description = "Özel sembol özelliği ayarlanırken parametre stringi çok uzun";
|
||
|
errors[243].constant = "ERR_CUSTOM_SYMBOL_PARAMETER_LONG";
|
||
|
//---
|
||
|
errors[244].code = 5310;
|
||
|
errors[244].description = "Tik dizisi zamana göre sıralanmamış";
|
||
|
errors[244].constant = "ERR_CUSTOM_TICKS_WRONG_ORDER";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Economic Calendar |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[245].code = 5400;
|
||
|
errors[245].description = "Tüm değerlerin açıklamalarını almak için dizi boyutu yetersiz";
|
||
|
errors[245].constant = "ERR_CALENDAR_MORE_DATA";
|
||
|
//---
|
||
|
errors[246].code = 5401;
|
||
|
errors[246].description = "İstek zaman sınırı aşıldı";
|
||
|
errors[246].constant = "ERR_CALENDAR_TIMEOUT";
|
||
|
//---
|
||
|
errors[247].code = 5402;
|
||
|
errors[247].description = "Ülke bulunamadı";
|
||
|
errors[247].constant = "ERR_CALENDAR_NO_DATA";
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Working with databases |
|
||
|
//+------------------------------------------------------------------+
|
||
|
errors[248].code = 5601;
|
||
|
errors[248].description = "Genel hata";
|
||
|
errors[248].constant = "ERR_DATABASE_ERROR";
|
||
|
//---
|
||
|
errors[249].code = 5602;
|
||
|
errors[249].description = "Dahili SQLite mantık hatası";
|
||
|
errors[249].constant = "ERR_DATABASE_INTERNAL";
|
||
|
//---
|
||
|
errors[250].code = 5603;
|
||
|
errors[250].description = "Erişim reddedildi";
|
||
|
errors[250].constant = "ERR_DATABASE_PERM";
|
||
|
//---
|
||
|
errors[251].code = 5604;
|
||
|
errors[251].description = "Geri arama rutini iptal talep edildi";
|
||
|
errors[251].constant = "ERR_DATABASE_ABORT";
|
||
|
//---
|
||
|
errors[252].code = 5605;
|
||
|
errors[252].description = "Veritabanı dosyası kilitli";
|
||
|
errors[252].constant = "ERR_DATABASE_BUSY";
|
||
|
//---
|
||
|
errors[253].code = 5606;
|
||
|
errors[253].description = "Veritabanı tablosu kilitli";
|
||
|
errors[253].constant = "ERR_DATABASE_LOCKED";
|
||
|
//---
|
||
|
errors[254].code = 5607;
|
||
|
errors[254].description = "İşlemi tamamlamak için yeterli bellek yok";
|
||
|
errors[254].constant = "ERR_DATABASE_NOMEM";
|
||
|
//---
|
||
|
errors[255].code = 5608;
|
||
|
errors[255].description = "Salt okunur veritabanına yazma girişimi";
|
||
|
errors[255].constant = "ERR_DATABASE_READONLY";
|
||
|
//---
|
||
|
errors[256].code = 5609;
|
||
|
errors[256].description = "İşlem sqlite3_interrupt() ile sonlandırıldı";
|
||
|
errors[256].constant = "ERR_DATABASE_INTERRUPT";
|
||
|
//---
|
||
|
errors[257].code = 5610;
|
||
|
errors[257].description = "Disk G/Ç hatası";
|
||
|
errors[257].constant = "ERR_DATABASE_IOERR";
|
||
|
//---
|
||
|
errors[258].code = 5611;
|
||
|
errors[258].description = "Veritabanı disk görüntüsü bozuldu";
|
||
|
errors[258].constant = "ERR_DATABASE_CORRUPT";
|
||
|
//---
|
||
|
errors[259].code = 5612;
|
||
|
errors[259].description = "sqlite3_file_control() içinde bilinmeyen işlem kodu";
|
||
|
errors[259].constant = "ERR_DATABASE_NOTFOUND";
|
||
|
//---
|
||
|
errors[260].code = 5613;
|
||
|
errors[260].description = "Ekleme başarısız oldu çünkü veritabanı dolu";
|
||
|
errors[260].constant = "ERR_DATABASE_FULL";
|
||
|
//---
|
||
|
errors[261].code = 5614;
|
||
|
errors[261].description = "Veritabanı dosyası açılamıyor";
|
||
|
errors[261].constant = "ERR_DATABASE_CANTOPEN";
|
||
|
//---
|
||
|
errors[262].code = 5615;
|
||
|
errors[262].description = "Veritabanı kilitleme protokolü hatası";
|
||
|
errors[262].constant = "ERR_DATABASE_PROTOCOL";
|
||
|
//---
|
||
|
errors[263].code = 5616;
|
||
|
errors[263].description = "Yalnızca dahili kullanım için";
|
||
|
errors[263].constant = "ERR_DATABASE_EMPTY";
|
||
|
//---
|
||
|
errors[264].code = 5617;
|
||
|
errors[264].description = "Veritabanı şeması değişti";
|
||
|
errors[264].constant = "ERR_DATABASE_SCHEMA";
|
||
|
//---
|
||
|
errors[265].code = 5618;
|
||
|
errors[265].description = "Dize veya BLOB boyut sınırını aşıyor";
|
||
|
errors[265].constant = "ERR_DATABASE_TOOBIG";
|
||
|
//---
|
||
|
errors[266].code = 5619;
|
||
|
errors[266].description = "Kısıtlama ihlali nedeniyle iptal edildi";
|
||
|
errors[266].constant = "ERR_DATABASE_CONSTRAINT";
|
||
|
//---
|
||
|
errors[267].code = 5620;
|
||
|
errors[267].description = "Veri türü uyuşmazlığı";
|
||
|
errors[267].constant = "ERR_DATABASE_MISMATCH";
|
||
|
//---
|
||
|
errors[268].code = 5621;
|
||
|
errors[268].description = "Kütüphane yanlış kullanıldı";
|
||
|
errors[268].constant = "ERR_DATABASE_MISUSE";
|
||
|
//---
|
||
|
errors[269].code = 5622;
|
||
|
errors[269].description = "Ana bilgisayarda desteklenmeyen işletim sistemi kaynakları kullanılıyor";
|
||
|
errors[269].constant = "ERR_DATABASE_NOLFS";
|
||
|
//---
|
||
|
errors[270].code = 5623;
|
||
|
errors[270].description = "Yetkilendirme reddedildi";
|
||
|
errors[270].constant = "ERR_DATABASE_AUTH";
|
||
|
//---
|
||
|
errors[271].code = 5624;
|
||
|
errors[271].description = "Kullanılmıyor";
|
||
|
errors[271].constant = "ERR_DATABASE_FORMAT";
|
||
|
//---
|
||
|
errors[272].code = 5625;
|
||
|
errors[272].description = "Parametre bağlama hatası, yanlış indeks";
|
||
|
errors[272].constant = "ERR_DATABASE_RANGE";
|
||
|
//---
|
||
|
errors[273].code = 5626;
|
||
|
errors[273].description = "Açık dosya bir veritabanı dosyası değil";
|
||
|
errors[273].constant = "ERR_DATABASE_NOTADB";
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|