OpenHighLowClose mt4 ea

指定

Hello,


I need an ea as below: Read and tell me if you can make it.

Open High Low Close Ea Instruction:

Add OHLC  prices  of Previous 1 Candle and Divide it by 4  . The value will be the pivot .
Example:

EURUSD:  O= 1.3158 , H= 1.3198 , Low= 1.3119  Close= 1.3121 .

From this example price the ea should do the following:
Add OHLC of Prvious 1  bar /4 .
1.3158+1.3198, +1.3119 +1.3121 /4  = 1.3149 pivot .

Buy Rule:  Buy when Open xbar >Pivot 1 bar
Close Buy  if Opening    xbar < Pivot 1 bar
Sell Rule : Sell if Open xbar < Pivot 1 bar
Close Sell if Open xbar > Pivot 1 bar
Stop Loss and Take Profit= Variable
Work with 4/5 digit quotes .
Work on all time frame.
Each Tick Mode:
Lot Size Variable and ability to use mm/risk setting so user can use manual lots or mm . See the code below on how I want the mm to be like:
[4/23/2013 8:09:32 AM] siriyke: extern int MagicNumber=10001;
extern double Lots =0.1;
extern double LotsPercent =0.01;
extern double StopLoss=250;
extern double TakeProfit=500;
extern int TrailingStop=0;
extern int Slippage=3;
//+------------------------------------------------------------------+
//    expert start function
//+------------------------------------------------------------------+
int start()
{
  double LotSize = Lots;
  if(LotsPercent>0)LotSize = LotsPercent*0.01*AccountBalance();
  double MinLot = MarketInfo(Symbol(),MODE_MINLOT);
  double MaxLot = MarketInfo(Symbol(),MODE_MAXLOT);
 
  double StopLevel = MarketInfo(Symbol(),MODE_STOPLEVEL)*Point;
  double FreezeLevel = MarketInfo(Symbol(),MODE_FREEZELEVEL)*Point;
  double MaxLevel = MathMax(StopLevel, FreezeLevel);
 
  LotSize=MathMax(LotSize,MinLot);
  LotSize=MathMin(LotSize,MaxLot);
 
  int normKoef = 3;
  if(MinLot>=0.01)normKoef=2;
  if(MinLot>=0.10)normKoef=1;
 
  int k=1;
  if(Digits==3 || Digits==5)k=10;
 
  double TheStopLoss=0;
  double TheTakeProfit=0;
  if( TotalOrdersCount()==0 )

応答済み

1
開発者 1
評価
(15)
プロジェクト
65
58%
仲裁
6
17% / 33%
期限切れ
39
60%
2
開発者 2
評価
(493)
プロジェクト
1022
58%
仲裁
30
27% / 23%
期限切れ
133
13%
仕事中
3
開発者 3
評価
(164)
プロジェクト
218
50%
仲裁
6
17% / 67%
期限切れ
11
5%
4
開発者 4
評価
(505)
プロジェクト
972
74%
仲裁
27
19% / 67%
期限切れ
100
10%
取り込み中
パブリッシュした人: 1 article, 6 codes
5
開発者 5
評価
(182)
プロジェクト
342
42%
仲裁
118
12% / 73%
期限切れ
104
30%
パブリッシュした人: 4 codes
6
開発者 6
評価
(26)
プロジェクト
45
29%
仲裁
2
0% / 50%
期限切れ
21
47%
7
開発者 7
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
パブリッシュした人: 1 code
8
開発者 8
評価
(12)
プロジェクト
17
35%
仲裁
1
0% / 100%
期限切れ
3
18%
9
開発者 9
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
10
開発者 10
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
11
開発者 11
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
12
開発者 12
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
13
開発者 13
評価
(273)
プロジェクト
396
63%
仲裁
70
53% / 26%
期限切れ
198
50%

プロジェクト情報

予算
20 - 27 USD
締め切り
最低 1 最高 4 日