|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
| View Poll Results: Your trading timeframe | |||
| 5 Mins |
|
0 | 0% |
| 10 Mins |
|
0 | 0% |
| 15 Mins |
|
2 | 13.33% |
| 30 Mins |
|
6 | 40.00% |
| 1 Hr |
|
2 | 13.33% |
| 4 Hrs |
|
5 | 33.33% |
| Voters: 15. You may not vote on this poll | |||
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Point of Control
I'm trying to set up this system, which they claim makes 150% yearly.
I'm lacking neccessary charts and indicators on M4 platform. Do you know of any indicator that would show the "Value Area (VR)" and "Point of Control (POC)" ? http://www.enthios.com/charts/universal.htm http://www.enthios.com/charts/PriceHisto.htm In case anyone has it, or would like to build it, please add it to the files section. Thanks! Vlad |
|
|||
|
I have this EA for MT3 and its simple design is to place 2 orders BUYSTOP and SELLSTOP.
Now its price is calculated from the previous bar info. The pivot value is generated and then add +17 for BUY and -13 for sell off that pivot value. If trade is executed then it should close at end of bar. If not then both are deleted at end of bar. Then it does the whole thing again. I would use a breakeven to 0 after 10pips Could someone take a look at this EA to make some changes to do this. /*[[ Name := BARTRADER Author := FAB4X Link := http://www.FAB4X.com Notes := Use on 15 or 30m charts Lots := 1.00 Stop Loss := 45 Take Profit := 25 Trailing Stop := 0 ]]*/ define: Slippage(5); define: MM(0); define: Risk(7.5); var: cnt(0); var: Opentrades(0); var: lotsi(0); var: trend(""); var: vTime(0); var: vol1(0); var: vol2(0); var: myh(0),myl(0),myc(0),pivot(0),buyprice(0),sellpric e(0); ////////////////////////////////////////////////// // Exit if not H4 charts ////////////////////////////////////////////////// /* if Period != 240 then { Comment("This expert is for 4HR Charts"); Exit; } */ ////////////////////////////////////////////////// // Exit if time between EA runs is less than 5 sec. ////////////////////////////////////////////////// if Curtime - LastTradeTime < 5 then exit; ////////////////////////////////////////////////// // Set if back tester earlier than 2005 ////////////////////////////////////////////////// If TimeYear(time)<2005 then Exit; ////////////////////////////////////////////////// // Set Variables ////////////////////////////////////////////////// Slippage = Slippage*Point; myh=High[1]; myl=Low[1]; myC=Close[1]; Pivot = ( myh+myl+myc )/ 3 ; buyprice=pivot+17*point; sellprice=pivot-13*point; ////////////////////////////////////////////////// // Set Comment ////////////////////////////////////////////////// ////////////////////////////////////////////////// ///////////// Manage multiple trades ///////////// ////////////////////////////////////////////////// Opentrades = 0; for cnt = 1 to TotalTrades { If OrderValue(cnt,Val_Symbol) == Symbol then { Opentrades++; } }; ////////////////////////////////////////////////// ///////////// Money Manager ///////////// ////////////////////////////////////////////////// if mm != 0 then Lotsi = Ceil(Balance*risk/10000)/10 else Lotsi=Lots; ////////////////////////////////////////////////// // Close Order after each bar! ////////////////////////////////////////////////// if Opentrades != 0 and vTime != Time[0] then { for cnt=1 to TotalTrades { If Ord(cnt,VAL_SYMBOL) == Symbol then { If (Ord(cnt,VAL_TYPE)=OP_BUY or Ord(cnt,VAL_TYPE)=OP_SELL) then { vTime = Time[0]; CloseOrder(OrderValue(cnt,VAL_TICKET),Ord(cnt,VAL_ LOTS),(cnt,VAL_CLOSEPRICE),Slippage,BlueViolet); // Exit; } If (Ord(cnt,VAL_TYPE)=OP_BUYSTOP or Ord(cnt,VAL_TYPE)=OP_SELLSTOP) then { vTime = Time[0]; DeleteOrder(OrderValue(cnt,VAL_TICKET),Brown); // Exit; } } } } ////////////////////////////////////////////////// // Open Trade at start of bar! ////////////////////////////////////////////////// if Opentrades == 0 and vTime != Time[0] then { vTime = Time[0]; SetOrder(OP_BUYSTOP,Lotsi,buyprice,Slippage,buypri ce-stoploss*point,buyprice+takeprofit*point,blue); // Exit; }; if Opentrades > 0 then { //vTime = Time[0]; SetOrder(OP_SELLSTOP,Lotsi,sellprice,Slippage,sell price+stoploss*point,sellprice-takeprofit*point,Red); // Exit; } exit; |
|
|||
|
Trendlines and Divergence
All the indicators for the thread Trendlines and Divergence Strategies please post here.
Two indicators posted by alp. |
|
||||
|
I'm looking for a tool that reads MT4 strategy tester reports and calculates Sharpe Ratio, Sortino Ratio, Rina Index or something similar
Even better would be if it can handle several reports from diffrents systems so I can calculate the portfolio ratio. A nice graph wouldn't hurt either :-) Can someone help me with a (URL to a) program that does all or part of the above? I know it's a big request but I think knowing the ratio of your sytem/portfolio is, an often overlooked, important aspect of your system design.
__________________
TraderSeven, May the pips be with you. Last edited by TraderSeven : 11-28-2005 at 07:31 PM. |
|
|||
|
Trend Signal
To find the trend direction I use 2 MACD, one short and one long, and trade if both histograms are in the same direction.
Sometimes it is dificult to read the slope of the histogram, so I use a Stoch of the MACD hist. Chart attach pdf file. I am new user of MT4 and don't know how to program, Do you know were I can find a Stoch of the MACD hist. Thank you |
|
|||
|
Hi,
I'm not a programmer. Spent 6 months trying on MQL3 and then 4 comes along. So I'm back to nowhere! Please can anyone help with the following. It should help other beginners as well, as it is the basics. Here's what I need: 1. A MQL that use two EMA's with a buy or sell signal on the cross depending on direction. 2. The value of each must be set separately. 3. The close signal is set on the reverse cross over. 4. Must include a trailing stoploss. I've had a look at codersguru's posts at Lesson 14 - Your First Expert Advisor (Part 2) and his code looks excellent, except that it subtracts 1 MA from the other. This is excellent, but deprives me of the abillity to work with each MA independently in the Expert properties fields. Thanks Guys. Great site. |
|
||||
|
combination of ICWR indicator and THE TUNNEL METHOD
Hi ereryone
My experience in FX trading is not more so that I lost my deposit in my mini account in fibogroup broker, that is why I start to study hard in order to get a stable way to trade with minimum risk, in this forum I learn many things and I'm almost clear and find out basic matters, I think the combination of ICWR indicator and THE TUNNEL METHOD can make a stable strategy and if it is possible to convert it to Expert Advisor it maybe have good results, anyway I want to start real trading again, please tell me if you use an expert advisor that you yourself use in your real trading and has good results so that I can increase my deposit not to lose all of my deposit . ![]() Last edited by m217irr : 12-12-2005 at 12:55 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Looking for some Fresh Ideas | Emerald King | Metatrader 4 | 3 | 01-11-2007 07:30 PM |
| Mandarine: original request and ideas | hellkas | Digital Filters | 33 | 11-04-2006 01:46 PM |