Orders Execution
Indicators Used
0
Views
0
Downloads
0
Favorites
Profitability Reports
AUD/USD
Oct 2024 - Jan 2025
4.00 %
Total Trades
6
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
-253.75
Gross Profit
60.00
Gross Loss
-1582.50
Total Net Profit
-1522.50
-100%
-50%
0%
50%
100%
GBP/CAD
Oct 2024 - Jan 2025
15.00 %
Total Trades
13
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
-46.18
Gross Profit
104.07
Gross Loss
-704.43
Total Net Profit
-600.36
-100%
-50%
0%
50%
100%
GBP/USD
Oct 2024 - Jan 2025
2.00 %
Total Trades
4
Won Trades
3
Lost trades
1
Win Rate
0.75 %
Expected payoff
-514.27
Gross Profit
36.00
Gross Loss
-2093.10
Total Net Profit
-2057.10
-100%
-50%
0%
50%
100%
weda--83win5lose-4h-GBP-JPY-based on MACD 300 pip per month-with 300 pip-S-L
//+------------------------------------------------------------------------+
//| MACD edited with new magic period.mq4 |
//| periode yg dimodifikasi didapat dengan kecerdasan buatan tingkat dasar|
//| period number is taken from book of soros, global crisis of capitalizm |
//| any better performance please contact with pm |
//+------------------------------------------------------------------------+
extern double Lots = 0.3;
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int start()
{
double MacdCurrent, MacdPrevious, MacdPrevious2, SignalCurrent;
double SignalPrevious, MaCurrent, MaPrevious;
int cnt, ticket, total, a, s, d, f;
// initial data checks
// cek data
// it is important to make sure that the expert works with a normal
// memastikan EA bekerja dengan normal
// chart and the user did not make any mistakes setting external
// tidak ada kesalahan user ataupun chart
// variables (Lots, StopLoss, TakeProfit,
// TrailingStop) in our case, we check TakeProfit
// on a chart of less than 100 bars
// memastikan grafik lebih dari 100 bar
if(Bars<100)
{
Print("bars less than 100");
return(0);
}
// sederhanakan kode untuk percepat running-to simplify the coding and speed up access
// data dipindahkan ke internal variabel-data are put into internal variables
MacdCurrent=iMACD(NULL,0,6,18,1,PRICE_CLOSE,MODE_MAIN,0);
MacdPrevious=iMACD(NULL,0,6,18,1,PRICE_CLOSE,MODE_MAIN,1);
MacdPrevious2=iMACD(NULL,0,6,18,1,PRICE_CLOSE,MODE_MAIN,2);
//-------------------------------------------------------------------------------
// if we use artificial neural network
// the best combination of period for each technical indicator
// will created instantly without significant consecutive loss
// i am still work on it
// always hope some one to help our team in jakarta...... :-)
// anything better the period that we have now are welcome
//-------------------------------------------------------------------------------
// periode didapat dari kutipan soros pada bukunya
// global crisis of capitalizm
// time periode are got from soros's book
total=OrdersTotal();
if(total<1)
{
// no opened orders identified
if(AccountFreeMargin()<(1000*Lots))
{
Print("We have no money. Free Margin = ", AccountFreeMargin());
return(0);
}
//-----------------------------------------------------------------penting
// check for long position (BUY) possibility
//-----------------------------------------------------------------penting
//if(MacdCurrent>0 && MacdCurrent<0.2&& MacdPrevious>0&& MacdPrevious<0.2&& MacdPrevious2>MacdPrevious<MacdCurrent)
if(MacdPrevious2>0 && MacdPrevious2<0.06 && MacdPrevious2>MacdPrevious<MacdCurrent)
//OP_BUY,Lots,Ask,3,Ask - 200*Point,Ask + 200*Point,"macd sample",16384,0,Green);
{
ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+40*Point,"macd sample",16384,0,Green);
if(ticket>0)
{
if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("BUY order opened : ",OrderOpenPrice());
}
else Print("Error opening BUY order : ",GetLastError());
return(0);
}
//-----------------------------------------------------------------penting
}}// the end-tamat
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---