Forex



Go Back   Forex Trading > Trading systems > Dolly
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
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.
See more

Reply
 
Thread Tools Display Modes
  #111 (permalink)  
Old 01-30-2007, 10:40 PM
vincethebeast's Avatar
Member
 
Join Date: Sep 2006
Location: UK
Posts: 50
vincethebeast is on a distinguished road
Forward test

Got Shinigami's version in a forward test too. Will post results.
Vince
__________________
To most people, the sky is the limit. For me it is home.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #112 (permalink)  
Old 01-30-2007, 10:56 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,218
matrixebiz is on a distinguished road
Quote:
Originally Posted by Shinigami
Found yet another bug. Fixed that already.
All bugs and fixes are done in the code so I'll simply post version 01_00 of the EA when I'm finished fixing it.
The bug: trailing stop was used instead of no-profit level. Now when we are in profit (at least n points) we move our stoploss to OrderOpenPrice+5 pips. After we did that, we use trailing profit.
Benefits: less modifications for stoploss, smaller drawdown.
Next steps: 1. optimize trailing stop; 2. make 2 trailing stops: normal one, ATR one; 3. moving stoploss every 5 pips instead of every pip; more to come!
Awesome Can't wait to forward test
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #113 (permalink)  
Old 01-30-2007, 10:57 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,218
matrixebiz is on a distinguished road
Quote:
Originally Posted by vincethebeast
Got Shinigami's version in a forward test too. Will post results.
Vince
Oh, did he PM you the new version? just wondering if he will post it today?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #114 (permalink)  
Old 01-30-2007, 11:04 PM
vincethebeast's Avatar
Member
 
Join Date: Sep 2006
Location: UK
Posts: 50
vincethebeast is on a distinguished road
Quote:
Originally Posted by matrixebiz
Oh, did he PM you the new version? just wondering if he will post it today?
No, I'm forward testing the one he posted earlier. Even though it might be a bit buggy still, just wondering how it will perform in a (demo of course..) forward test.
__________________
To most people, the sky is the limit. For me it is home.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #115 (permalink)  
Old 01-31-2007, 01:44 AM
AQUILEZ's Avatar
Member
 
Join Date: Jul 2006
Posts: 64
AQUILEZ is on a distinguished road
RVI To Close A Open Position

The main point of Relative Vigor Index Indicator (RVI) is that on the bull market the closing price is, as a rule, higher, than the opening price. It is the other way round on the bear market. So the idea behind Relative Vigor Index is that the vigor, or energy, of the move is thus established by where the prices end up at the close. To normalize the index to the daily trading range, divide the change of price by the maximum range of prices for the day. To make a more smooth calculation, one uses a symmetrically weighted moving average of the differences of the closing and openings prices, as well as maximum and minimum prices of the bar.

The best period at calculation of the indicator is considered 10. To avoid probable ambiguity one needs to construct a signal line, which is a symmetrically weighted moving averageof Relative Vigor Index values. The concurrence of lines serves as a signal to buy or to sell.
Calculation

VALUE1 = ((CLOSE - OPEN) + 2 * (CLOSE (1)) – OPEN (1)) + 2*(CLOSE (2) – OPEN (2)) + (CLOSE (3) – OPEN (3))) / 6

VALUE2 = ((HIGH - LOW) + 2 * (HIGH (1) – LOW (1)) + 2*(HIGH (2)- LOW (2)) + (HIGH (3) – LOW (3))) / 6

NUM = SUM (VALUE1, N)

DENUM = SUM (VALUE2, N)

RVI = NUM / DENUM

RVISig = (RVI + 2 * RVI (1) + 2 * RVI (2) + RVI (3)) / 6

where:
OPEN — is the opening price;
HIGH — is the maximum price;
LOW — is the minimum price;
CLOSE — is the closing price;
VALUE1 — symmetrically weighted moving average of the differences of the closing and openings prices;
VALUE2 — symmetrically weighted moving average of the differences of the maximum and minimum prices;
NUM — amount N importances of VALUE1;
DENUM —amount N importances of VALUE2;
RVI — value of the Relative Vigor Index indicator for the current bar;
RVISig — value of the RVI signal line for the current bar;
N — period of the smoothing.


iRVI(NULL, 0, 10, MODE_MAIN,1)>iRVI(NULL, 0, 10, MODE_SIGNAL,1);
iRVI(NULL, 0, 10, MODE_MAIN,1)<iRVI(NULL, 0, 10, MODE_SIGNAL,1);
iRVI(NULL, 0, 10, MODE_MAIN,0)>iRVI(NULL, 0, 10, MODE_SIGNAL,0);

Quote:
Originally Posted by MrPip
I decided to go ahead and post this now.

It uses several custom indicators to try to determine trend. HMA seems to be the best and works better than GMACD.

Other indicators are from this thread but I might have modified a few to make them run faster or changed variable names to make it easier to understand what the indicator is doing.

If anyone has other ideas for determining trend let me know.
Please do not include the standard MAs as I have tried them all. I have also tried NonLagMA but that did not help.

I have looked at the DIN EA. The programmer of that one might want to look at how I get the indicators, especially MACD.
I did not use a great deal of comments but the variable names and function names should be clear enough.

I did put the indicator checks in what I thought would give the fastest backtest run times.



Robert
RVI is a good Close position Indicator and can be a good trend opener too, the problem is that sometimes the market stop a little and triger a repetitive signal

Last edited by AQUILEZ; 01-31-2007 at 01:55 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #116 (permalink)  
Old 01-31-2007, 02:05 AM
fxnewbie's Avatar
Senior Member
 
Join Date: Jun 2006
Posts: 495
fxnewbie is on a distinguished road
Quote:
Originally Posted by MrPip
I decided to go ahead and post this now.

It uses several custom indicators to try to determine trend. HMA seems to be the best and works better than GMACD.

Other indicators are from this thread but I might have modified a few to make them run faster or changed variable names to make it easier to understand what the indicator is doing.

If anyone has other ideas for determining trend let me know.
Please do not include the standard MAs as I have tried them all. I have also tried NonLagMA but that did not help.

I have looked at the DIN EA. The programmer of that one might want to look at how I get the indicators, especially MACD.
I did not use a great deal of comments but the variable names and function names should be clear enough.

I did put the indicator checks in what I thought would give the fastest backtest run times.



Robert
Hi !!
I was playing with your EA trying to find best set up for EURO-US (I later will try other pairs). The most profitable TF I found is 4 hours, with settings as showed in parameters (attachment). I am not happy with results specially coz drawdown: everything above 20% is too much for me.

Anyway, my modelling quality is very poor and if somebody think is interesting, can test with better accuracy. Results can be worst (or better).
Attached Files
File Type: htm StrategyTester kuskus 4 hour.htm (131.5 KB, 199 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #117 (permalink)  
Old 01-31-2007, 02:10 AM
fxnewbie's Avatar
Senior Member
 
Join Date: Jun 2006
Posts: 495
fxnewbie is on a distinguished road
Quote:
Originally Posted by fxnewbie
Hi !!
I was playing with your EA trying to find best set up for EURO-US (I later will try other pairs). The most profitable TF I found is 4 hours, with settings as showed in parameters (attachment). I am not happy with results specially coz drawdown: everything above 20% is too much for me.

Anyway, my modelling quality is very poor and if somebody think is interesting, can test with better accuracy. Results can be worst (or better).
Upss !! Graph...
Attached Images
File Type: gif TesterGraph.gif (6.4 KB, 948 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #118 (permalink)  
Old 01-31-2007, 05:04 AM
AQUILEZ's Avatar
Member
 
Join Date: Jul 2006
Posts: 64
AQUILEZ is on a distinguished road
RVI Sample

RVI always Comes First And is used in many EA already Like Firebird and others

See RVI Sample Here!
Attached Images
File Type: gif dolly94.gif (33.1 KB, 1088 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #119 (permalink)  
Old 01-31-2007, 05:30 AM
bsl's Avatar
bsl bsl is offline
Junior Member
 
Join Date: Aug 2006
Location: Novosibirsk, Russia
Posts: 1
bsl is on a distinguished road
Quote:
Originally Posted by nina
Hi!!

No way, my friend. I still get wrong cells. I've done all what you've said and nothing.
Open Metatrader: tools → options → server → "enable DDE server".
Open excel file. When you open it, it ask for update click yes.
Attached Images
File Type: gif server DDE.GIF (81.7 KB, 974 views)
__________________
Koshka
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #120 (permalink)  
Old 01-31-2007, 07:32 AM
Senior Member
 
Join Date: Jun 2006
Posts: 363
chrisstoff is on a distinguished road
KusKusEA Backtest Results

Hi,

I backtested this EA with your settings but in two versions: MM_true; and MM=false;

Modelling Quality 90%.

The results are fantastic, nearly incredible. The absolut drawdown is zero.

We should forward test it as soon as possible.

Edit: Attachment updated.
Reason: Corrupted database caused false results earlier. I newly dowloaded the database, reinstalled the test program and retested. The results are much worse than the earlier ones were. Strange now: Same results in case of MM=true; and MM= false;


Quote:
Originally Posted by fxnewbie
Hi !!
I was playing with your EA trying to find best set up for EURO-US (I later will try other pairs). The most profitable TF I found is 4 hours, with settings as showed in parameters (attachment). I am not happy with results specially coz drawdown: everything above 20% is too much for me.

Anyway, my modelling quality is very poor and if somebody think is interesting, can test with better accuracy. Results can be worst (or better).
Attached Files
File Type: zip KusKusEA_Backtest_3.ZIP (37.1 KB, 299 views)

Last edited by chrisstoff; 01-31-2007 at 02:09 PM. Reason: Corrupted database
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
dolly + isakas, GMACD indicator, dolly, Heiken_Ashi_Ma.ex4, StepStopExpert, isakas, DIN Kuskus EA, ISAKAS EA, forex, turbo_jrsx, heiken_ashi_kuskus2, DIN_KusKus_EA, DIN_KusKus_EA_v1.8, range factor, Nina_StepMA, Dolly Isakas, system, DIN KusKus, nina step ma, Dolly Isakas Nina, Heiken_Ashi_kuskus2.mq4, kuskus starlight, Isakas kuskus v2, isakas mq4, DOLLY TRADING SYSTEM, nina forex, isakas 2, Dolly Graphics, dolly trading, gmacd, stepstop


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ISAKAS ashi by Kuskus_Osentogg zeman Manual trading systems 2030 09-09-2009 07:14 PM
Dolly system mrtools Dolly 1271 07-25-2009 06:36 PM
ISAKAS CS by Kuskus_Osentogg zeman Manual trading systems 50 05-20-2007 08:47 PM
Observations of the Nina method BrunoFX Suggestions for Trading Systems 145 09-04-2006 05:14 PM


All times are GMT. The time now is 10:12 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.