Jatin Patel / Profile
Hi I am from India, I am Software Developer, I like forex trading , I lost my all first deposite in forex , now i am learning to do well , i also code for EA.
Friends
2680
Requests
Outgoing
Jatin Patel
Published post C++ CLASS AND OBJECT
Keywords: private and public You may have noticed two keywords: private and public in the above example. The private keyword makes data and functions private. Private data and functions can be accessed only from inside the same class. The public keyword makes data and functions public...
Jatin Patel
Published post c++ class and Object
C++ is a multi-paradigm programming language. Meaning, it supports different programming styles. One of the popular ways to solve a programming problem is by creating objects, known as object-oriented style of programming...
Jatin Patel
Published post ea methods for symbol wise
double calculateProfit() { /* double profit = 0; for (int i = 0; i < symbol_size; i++) {...
Share on social networks · 1
124
Jatin Patel
Published post rvi
double mypricearray0[]; double mypricearray1[]; int RVIDef = iRVI(_SYMBOL,_PERIOD,10); ArraySetAsSeries(mypricearray0,true); ArraySetAsSeries(mypricearray1,true...
Share on social networks · 1
131
Jatin Patel
Published post symbol with spread
enum SYMBOLS_OF_PAIR { "EURGBP;GBPUSD;EURUSD", 0.7+0.6+0.5 = 1.8 12.86 10.00 10.00 "EURUSD;USDJPY;EURJPY", 0.5+0.5+0.9 = 1.9 10.00 8.97 8.97...
Share on social networks · 1
164
Jatin Patel
Published post ENUM symbol of pair
enum SYMBOLS_OF_PAIR { "EURCHF;CHFJPY;EURJPY", "GBPCHF;CHFJPY;GBPJPY", "USDCHF;CHFJPY;USDJPY...
Share on social networks · 1
389
Jatin Patel
Published post spread comparision
int MyExpert::getAvgSpread(){ // int spread = SymbolInfoInteger(symbol,SYMBOL_SPREAD)); double myspread=(SymbolInfoDouble(symbol,SYMBOL_ASK)-SymbolInfoDouble(symbol,SYMBOL_BID))/SymbolInfoDouble(symbol,SYMBOL_POINT); double j = 0...
Share on social networks · 1
115
Jatin Patel
Published post Bug in ordersetnd
//+------------------------------------------------------------------+ //| OPENBUY FUNCTION | //| *Has Input parameters - order type, Current ASK price, | //| Stop Loss, Take Profit, deviation, comment | //| *Checks account free margin before pacing trade if trader chooses|...
Share on social networks · 1
132
Jatin Patel
Published post calculate spead
//--- obtain spread from the symbol properties bool spreadfloat=SymbolInfoInteger(Symbol(),SYMBOL_SPREAD_FLOAT); string comm=StringFormat("Spread %s = %I64d points\r\n", spreadfloat?"floating":"fixed", SymbolInfoInteger(Symbol(),SYMBOL_SPREAD...
Share on social networks · 1
105
Jatin Patel
Published post look
make ea based on this artical https://www.mql5.com/en/articles/116 multicurrency ea artical https://www.mql5.com/en/articles/770 https://www.mql5.com/en/articles/723...
Share on social networks · 1
107
1
Jatin Patel
Published post multiple symbol
https://www.mql5.com/en/articles/648 https://www.mql5.com/en/articles/105...
Share on social networks · 1
90
1
: