Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
A CCI based system that can enter a position based on the crossing of set levels, 50, -50, 100, -100, 150, -150, 200, -200 (with more $$$/stronger signals as the levels get higher) but exits the position based on a float/"trailing stop" rather than set levels like the entry.
Trade just EURUSD, Cable, and USDJPY on a 15 or 30 min chart.
A trend indicator that determines how many lots to trade. trade with the trend = more lots against the trend = less lots or 0. Like counting cards at a blackjack table, the better the count the more you bet.
A simple Moving Averages of Relative Strength Index signal or just a MACD to validate the trade. The purpose is to stop trades when there is a CCI signal but no price movement.( this is up for debate, mabye a better indicator )
and finally good money management.
I would like to run it with risk capital so if all the signals are strong I am willing put up to %50 of account balance Equity on each position If all signals are strong (CCI, with the short,mid, long term trend and MACD). A go big or go home EA.
Let me know what your thoughts are. Suggestions ect...
for anything that can be run off of simple signals like cci, macd, moving average, etc. not only does it let YOU solve the problem the way you want, it also helps you learn a bit of coding so you're not so CO-dependant on others to code for you. .
now as for more money;
there's a section in the code, that you'll have to search for, at the top, in comments. it looks like this
PHP Code:
//+------------------------------------------------------------------+ //| Signal Begin(Entry) | //+------------------------------------------------------------------+ //your opening logics will be here //+------------------------------------------------------------------+ //| Signal End | //+------------------------------------------------------------------+
simply copy each logic as many times as you want to have options for increasing lot sizes and change,
PHP Code:
Order = SIGNAL_SELL;
to
PHP Code:
Order = SIGNAL_SELL; Lots = 1;
it should work
__________________
"One's ability to accomplish his or her goals is limited only by the ingenuity of how one uses what he or she already knows."- Eaglehawk
REMEMBER, "Genius is nothing but a greater aptitude for patience." –Benjamin Franklin
____________________________________
Have a simple ea you just can't figure out how to code??? Odds are you can make it here. Just remember to push complete when you're done, NOT SAVE!!! http://sufx.core.t3-ism.net/ExpertAdvisorBuilder
Is the CCI just using the CCI alone to initiate a trade? I have tried it on my demo account, I have never seen an EA get killed so fast. I had tried tweaking other paramters to see how it performs, does not look good at all.
I have listen to the advise to give more information. Please find attached a WCCI indicator.
First of all let me explain how the ZLR works on the WCCI. ZLR mean zero line rejection. It is basically a trend retracement and this ZLR pattern will actually tell you when to enter a trade during a trend retracement if it occurs.
Refer to the diagram below, you will see a few things:
1) TCCI - White Colour
2) CCI - Black
3) Red colour bar for downtrend
4) Blue bar for uptrend
All I need is an alert to tell me when the following situation occurs:
Downtrend
1) At least six(6) red colour bar occurs in a row and some of them is below -100 level. Actually the more same colour bar occur the better but must be at least 6 bar and above.
2) CCI (the black colour did not pass through the zero line
3) TCCI passes or touches the ZLR line and when this happened CCI must be at least one red bar above -100.
Uptrend
1) At least six(6) blue colour bar occurs in a row and some of them is above 100 level. Actually the more same colour bar occur the better but must be at least 6 numbers bar and above.
2) CCI (the black colour) did not pass through the zero line
3) TCCI passes or touches the ZLR line and when this happened CCI must be at least one blue bar below 100.
I need an alert to identify this situation. Can someone help me please.
The idea behind this indicators is to tap good signal during trend. If someone can help me with this project I will certainly follow with it and test it out live.
I can forsee that this indicators can later turn out to be a good EA in the futures.