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.
I would also consider adding a condition that will only place trades in the direction of the 4hr trend. I think everyone would agree that going against the trend has much more risk.
Derk, I do not write code but how difficult is it to add a condition that would only place trades after looking at the 4hr trend; check for 2 full 4hr blue bars for long position and check for 2 full 4hr red bars for short position ? thx mike
Question is could you do this with EURCAD every single week? If you have taken trades from 6/15 to 9/10, you would have generated a loss of around 565pips.
Well Rondo I don't know. That would depend on how I interpret the signal. When I manually trade a system alot of discretion goes into it because I don't take every signal a pair gives just the ones that meet my criteria and I feel have a greater probablity of being successful. Your question is kind of like asking will it rain tommorrow? Good luck trading this week....Tim
PS Also that was my very first trade with this system.....
__________________
"Dictionary is the only place that success comes before work. Hard work is the price we must pay for success. I think you can accomplish anything if you're willing to pay the price." Vince Lombardi
[quote=amaruenterprise;156062]Well Rondo I don't know. That would depend on how I interpret the signal. When I manually trade a system alot of discretion goes into it because I don't take every signal a pair gives just the ones that meet my criteria and I feel have a greater probablity of being successful. Your question is kind of like asking will it rain tommorrow? Good luck trading this week....Tim
Tim, I was addressing your original question about backtesting. If your rules varies, I guess it is quite impossible to backtest and you are right.
Well Rondo I don't know. That would depend on how I interpret the signal. When I manually trade a system alot of discretion goes into it because I don't take every signal a pair gives just the ones that meet my criteria and I feel have a greater probablity of being successful. Your question is kind of like asking will it rain tommorrow? Good luck trading this week....Tim
Tim, I was addressing your original question about backtesting. If your rules varies, I guess it is quite impossible to backtest and you are right.
Rondo I apologize for the misunderstanding.......Tim
__________________
"Dictionary is the only place that success comes before work. Hard work is the price we must pay for success. I think you can accomplish anything if you're willing to pay the price." Vince Lombardi
Last edited by amaruenterprise; 10-07-2007 at 10:00 PM.
I was away yesterday; just got back. Let me answer several posts in one:
Quote:
Originally Posted by amaruenterprise
Derk have you back tested it using the daily? I'm curious to what kind of results that would have. This might be just luck because it was my first using this strategy but there were a setup for the eur/cad I think maybe at 8:00 est when the new daily is formed on IBFX so I took it and deposited 211 pips friday before end of session. I'm not the most computer savy person in the world and to be honest do not know how to backtest a strategy or I would have already done so. Thanks for this info....Tim
This is just an indicator as of now. All you have to do to "backtest" is open a chart, press the "Home" hey until the chart stops scrolling (this will get all the available data for that chart from your broker), then with the chart still scrolled back all the way, apply the indicator, then hit the "End" key to go to the most recent part of the chart, and read the total pips.
Quote:
Originally Posted by Mescalito
Derek,
i found a good setting on the G/Y 4H
the results said 11560 pips for 13489 bars.
Settings for synergyIndicator
and results availible in screen shots.
but dont know if this resembles a good result. considering drawdown. could you survive this?
God's bless
Gerry
Gerry, I think Chris already responded regarding use of the H4 chart. Originally I too thought the H4 would be best, but now I am thinking the H1 or M30.
Quote:
Originally Posted by FXBabe
someone make an ea please with some trailing stop maybe.
Its in the works, and nearly done.
Quote:
Originally Posted by Chris29
Thank you, Chrisstoff. In deed, this indicator looks very well. I did some manual backtests with Chaikin's Volatility indicator the last days.
I looked over some charts and it seems that it filters out more losing trades with lower volatility than the Bollinger Expansion...
Derk, is it possible to add this indicator to the trading rules: Buy or Sell only when volitility is > 0?
I think it's really worth to compare them ...
An option to trade only when the Chaikin Volatility Indicator is > 0... Yes, sure. I'm on it.
Quote:
Originally Posted by cochran1
I would also consider adding a condition that will only place trades in the direction of the 4hr trend. I think everyone would agree that going against the trend has much more risk.
Derk, I do not write code but how difficult is it to add a condition that would only place trades after looking at the 4hr trend; check for 2 full 4hr blue bars for long position and check for 2 full 4hr red bars for short position ? thx mike
Trade [long] only when, on an H4 chart, the previous and previous previous candles are both long? Or their Heiken Ashi's are long?
Just want to make sure I understand you... I suspect this will weed out too many good trades, but it's worth a shot.
I will post again when I get these changes done. And hopefully the EA will be done tomorrow as well.
-Derk
Last edited by DerkWehler; 10-08-2007 at 12:40 AM.
Derk, not sure the best way to code this but my point was just to trade with the 4hr trend; if the 4hr is trending down then trade short, if the 4hr is trending up then trade long. thanks mike
This is just an indicator as of now. All you have to do to "backtest" is open a chart, press the "Home" hey until the chart stops scrolling (this will get all the available data for that chart from your broker), then with the chart still scrolled back all the way, apply the indicator, then hit the "End" key to go to the most recent part of the chart, and read the total pips.
Thank you Derk very much appreciated....Tim
__________________
"Dictionary is the only place that success comes before work. Hard work is the price we must pay for success. I think you can accomplish anything if you're willing to pay the price." Vince Lombardi
Derk, not sure the best way to code this but my point was just to trade with the 4hr trend; if the 4hr is trending down then trade short, if the 4hr is trending up then trade long. thanks mike
Mike:
Therein lies the problem... How precisely do I tell which way it is trending? Using the HA candle instead of price candles might be good.
To tell the trend of the price channel, I do a "scoring" system, looking at the current, previous and previous previous values, like this:
Code:
if (MA_Hi_0 > MA_Hi_1) sum++;
if (MA_Lo_0 > MA_Lo_1) sum++;
if (MA_Hi_0 > MA_Hi_2) sum++;
if (MA_Lo_0 > MA_Lo_2) sum++;
if (MA_Hi_1 > MA_Hi_2) sum++;
if (MA_Lo_1 > MA_Lo_2) sum++;
if (MA_Hi_0 < MA_Hi_1) sum--;
if (MA_Lo_0 < MA_Lo_1) sum--;
if (MA_Hi_0 < MA_Hi_2) sum--;
if (MA_Lo_0 < MA_Lo_2) sum--;
if (MA_Hi_1 < MA_Hi_2) sum--;
if (MA_Lo_1 < MA_Lo_2) sum--;
Then if "sum" turns out to be 3 or greater, I call it a long trend; -3 or less and it's a short trend. I suppose I could do something similar for the general trend. Perhaps I should just require the current, previous and previous previous HA candles to be the same colour.
Anyone have a better idea?
-Derk
Last edited by DerkWehler; 10-08-2007 at 04:31 AM.