trrrrrrrrrr

Orders Execution
It automatically opens orders when conditions are reachedChecks for the total of open ordersIt Closes Orders by itself
0 Views
0 Downloads
0 Favorites

Profitability Reports

AUD/USD Oct 2024 - Jan 2025
62.00 %
Total Trades 65
Won Trades 0
Lost trades 0
Win Rate 0.00 %
Expected payoff -0.89
Gross Profit 96.30
Gross Loss -154.30
Total Net Profit -58.00
-100%
-50%
0%
50%
100%
GBP/USD Oct 2024 - Jan 2025
80.00 %
Total Trades 65
Won Trades 33
Lost trades 32
Win Rate 0.51 %
Expected payoff -0.60
Gross Profit 153.00
Gross Loss -192.30
Total Net Profit -39.30
-100%
-50%
0%
50%
100%
trrrrrrrrrr
extern string Ìåòêà1="-= Ïàðàìåòðû PriceChannel_Stop_v6 =-";
extern int PriceChannel_ChannelPeriod=26;   //Price Channel Period
extern double PriceChannel_Risk=0.1;      //channel narrowing factor (0...0,5)  
extern string Ìåòêà2="-= Ïàðàìåòðû ñàìîãî ýêñïåðòà =-";
extern int Îòñòóï_îò_òî÷êè_ñòîïà=20;
extern int TP=200;

double PCSU,PCSD,PCst;
int cbar=0;
int start()
{ 
 RefreshRates();
/* PCSU=iCustom(Symbol(),PERIOD_M15,"PriceChannel_Stop_v6",PriceChannel_ChannelPeriod, PriceChannel_Risk, 1, 0, 0, 0, 1000, 0, 1);
 if (PCSU==0) PCSU=iCustom(Symbol(),PERIOD_M15,"PriceChannel_Stop_v6",PriceChannel_ChannelPeriod, PriceChannel_Risk, 1, 0, 0, 0, 1000, 2, 1);
 PCSD=iCustom(Symbol(),PERIOD_M15,"PriceChannel_Stop_v6",PriceChannel_ChannelPeriod, PriceChannel_Risk, 1, 0, 0, 0, 1000, 1, 1);
 if (PCSD==0) PCSD=iCustom(Symbol(),PERIOD_M15,"PriceChannel_Stop_v6",PriceChannel_ChannelPeriod, PriceChannel_Risk, 1, 0, 0, 0, 1000, 3, 1);
 Print(" Íèæíÿÿ=",PCSU," Âåðõíÿÿ=",PCSD);*/
 if (Hour()==23 && Minute()>45){
  Print("inter");
  if (OrdersTotal()<1) OrderSend(Symbol(),OP_SELL,0.1,Bid,2,0,0,"-",0,0,Yellow);}
 if (Hour()==0) 
  {
   OrderSelect(0,SELECT_BY_POS,MODE_TRADES);
   OrderClose(OrderTicket(),OrderLots(),Ask,2,Orange);
  }
}

Comments

Markdown supported. Formatting help

Markdown Formatting Guide

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Code `code`
Code Block ```
code block
```
Quote > blockquote
Unordered List - Item 1
- Item 2
Ordered List 1. First item
2. Second item
Horizontal Rule ---