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.
Simply put...you cannot apply a sliding scale (this is what a percent does) to the same progression over and over again , trade by trade...as you progressivley set the goal harder and harder and harder with increasing exposure values, in other words without increasing leverage or progression.
Spoonfeed:
1 instrument
initial:1K
$25.00 TP (Double this when you reach 2k...not before!)
$500.00 SL (you need room to run...this is a hedge of long and short...do not forget, pyramiding is your salvation) (Double this when you reach 2k, not before!)
USD/JPY : NextTrade=16
Start 0.01 (Double this when you reach 2k, not before)
increment 0.01 (Double this when your reach 2K, not before!)
CloseAllMax "false"
TF:5
ES
Last edited by ElectricSavant; 01-15-2008 at 08:24 PM.
my humble apologies...I did not realize this was your baby.
You and wolfe have a brilliant idea here...(there is just a little flaw in some logic...I am still testing and maybe I can find some more...but I have trouble to explain things if you have not noticed)
I am really, really embarrassed....
Am I understanding your EA theory correctley?
ES
Last edited by ElectricSavant; 01-15-2008 at 08:54 PM.
Do you happen to have an EA that would do the following that you could share?
-User decides initial trade direction (let's say long) and starting lot size (say .1 lot)
-New position would be added every time the market moves x pips (say 10 pips) up or down away from the most recent position taken. If market moves up from the original position 10 pips a new long is added. If the market moves down 10 pips from the last position a short is added (basically following the market looking to catch a trend in either direction).
-Each new position size increased by x (ex: .1 lot)
-Take profit based on account %
-Stop loss based on account %
-Max number of standard lots before EA can't taken any new positions (at this point the T/P or S/L will need to be hit when max is reached)
-Re-enter mode would start a new progression again once the prior progression has ended do to T/P or S/L being hit
-Magic number to run on multiple pairs
If you don't have this, could you please code it so we could test it? I would very much appreciate it.
It seems like wolfe is doing a great job...but I just got a ping error and the EA does not retry the entry...I think the progression is ended because of that...there may be a way for stability to be improved..
ES
Quote:
Originally Posted by lcfxtrader
ES,
Here's the system in a nut shell.
Hi wolfe,
Do you happen to have an EA that would do the following that you could share?
-User decides initial trade direction (let's say long) and starting lot size (say .1 lot)
-New position would be added every time the market moves x pips (say 10 pips) up or down away from the most recent position taken. If market moves up from the original position 10 pips a new long is added. If the market moves down 10 pips from the last position a short is added (basically following the market looking to catch a trend in either direction).
-Each new position size increased by x (ex: .1 lot)
-Take profit based on account %
-Stop loss based on account %
-Max number of standard lots before EA can't taken any new positions (at this point the T/P or S/L will need to be hit when max is reached)
-Re-enter mode would start a new progression again once the prior progression has ended do to T/P or S/L being hit
-Magic number to run on multiple pairs
If you don't have this, could you please code it so we could test it? I would very much appreciate it.
Thanks,
LCFX
Last edited by ElectricSavant; 01-16-2008 at 01:06 AM.
Did you write the take profit and stop loss % to be based on account balance before the trade progressions begin (I believe this is what I requested wasn't it)? The EA has been taken profits, however, all the open positions have not added up to the % TP that I have set. Could you please explain why? All the orders should be closed on either the SL or TP being hit. I can send you print screen if needed.
Thanks,
lcfxtrader
I tried to code the way you explained. Not sure where the problem is yet. Maybe slippage? Maybe the time it takes to close all orders coupled with a fast moving market? Maybe my code! I'm no expert coder, that's why I am doing this for free. I am enjoying this project and am learning a lot from everyone's input.
You do need to enter your TP_Percent and SL_Percent as whole numbers. Example if you want 1% enter 1, not 0.01. The code changes to a decimal later.
It seems like wolfe is doing a great job...but I just got a ping error and the EA does not retry the entry...I think the progression is ended because of that...there may be a way for stability to be improved..
ES
After the initial strategy is coded, will have to analyze all the code for any potential bugs, to make it "order reliable". I know as it stands now, the code seems to have some "hiccups" every once in a while.
Going to go over what I've done to v1_2 now. Will post later tonight.
1. You need to save TFX_Include_v1_2 in your include folder. There is additional code in this file NOT in original file.
2. Close_By_Percent external variable.
-If true EA will close based on percentage of account BALANCE
-If false EA will close based on Close_By_Profit (enter a $ amount), or close by Close_By_Loss (enter a -$ amount)
3. Use_Manual_Entry external variable.
-If true you must enter Manuel_Long & Manuel_Short price you want EA to start cycle. (current price must be between Manuel_Long & Manuel_Short to execute properly)
-Manuel_Long & Manuel_Short are external variables to enter your "breakout" prices used to trigger the start of a cycle.
-Once a cycle is complete an alert will pop up notifying that you need to RESET EA and RESET MANUEL_LONG AND MANUEL SHORT.
-If Use_Manual_Entry is false EA will use the moving average to decide direction and start a cycle. Once a cycle is complete EA will immediately start a new cycle.
PLEASE take some time to read all external variable comments in the code.
Hope this works well for all.
Last edited by wolfe; 01-16-2008 at 06:16 AM.
Reason: RE-POST of TFX v1_2 (small code change)
I re-posted v1_2 in previous post with a slight code change.
The problem was that if Use_Manual_Entry was set to false you would still get a pop-up alert stating that trade was disabled. The problem should be fixed now.