#151 (permalink)  
Old 02-21-2006, 02:21 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

scorpion,

I know this seems rough but when a system has been beaten up like that several times maybe starting anew is the best to do. We have to keep it simple though, making something complicated will just mean there is more precision needed therefore more chances of there being bugs, etc.

Anywho, once you are done with the job that you were assigned you may work on this, but lets set priorities
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #152 (permalink)  
Old 02-23-2006, 08:56 AM
Freshman
 
Join Date: Feb 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
knvsantosh is on a distinguished road
Default

hello i am newbie of this forum i see rsx indicator now i want rsx indicator and rsx expert and rsx signal alert with sound. these indicators are i want so please give me and i already download rsx swinger v3 but it is not working so please give me
Reply With Quote
  #153 (permalink)  
Old 02-27-2006, 10:13 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

Scorpion,

I know we've said in the past that inversing a system will not make the graph go upside down. But I've just tested the RSX with TP of 5 and SL of 7 (2pips of spread)... it's giving pretty good losses here (I never though I'd ever put good and losses together) I was wondering what would happen if we inverse the buy signal to a sell and vice versa?

Let me know, I don't know how MT4 works so I'm not going to mess with the code.

Thanks
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #154 (permalink)  
Old 02-28-2006, 12:39 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,973
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Gaz, you can do that in a min, just hack RSX Swinger (point).mql4 as described below:

Find original code:
PHP Code:
IsBuy  = (rsx1 <= Buy_Level && rsx0 Buy_Level);
IsSell = (rsx1 >= Sell_Level && rsx0 Sell_Level);
IsCloseBought = (rsx0 Exit_Buy_Level);
IsCloseSold = (rsx0 Exit_Sell_Level); 
Reverse IsBuy <--> IsSell, IsCloseBought <--> IsCloseSold. Swap only the names before equal signs not the whole lines.
PHP Code:
IsSell = (rsx1 <= Buy_Level && rsx0 Buy_Level);
IsBuy = (rsx1 >= Sell_Level && rsx0 Sell_Level);
IsCloseSold = (rsx0 Exit_Buy_Level);
IsCloseBought = (rsx0 Exit_Sell_Level); 
Now remember that Buy_Level and Sell_Level are opposite now. In case you want to change Buy_Level then change Sell_Level instead.

I could just swap the code for you, but I think this is nice experience for you.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.

Last edited by scorpion : 02-28-2006 at 12:43 AM.
Reply With Quote
  #155 (permalink)  
Old 02-28-2006, 02:27 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

I changed it but I'm not expecting anything close to what I got.

So here is my hypothesis: I put RSX swinger in a small M5 timeframe with period 20. I put the RSX v3 (point) expert, put levels of buy and sell both at 50 with buyclose at 10 and sell close at 90. Then I put a TP of 5 and a SL of 7 (so the spread is covered...) Now what exactly would make it that if I reverse buy and sell it doesnt flip over everything. Because by doing the TP 5 and SL 7 it should be telling me which one gets to 7pips first. Is there something I'm missing here?

It should be the exact opposite result if we sell instead of buy and buy instead of sell...

Here are the results I got with the settings I have above:
http://www.forex1000.com/FXFisherman/RSXloss.htm
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #156 (permalink)  
Old 02-28-2006, 02:30 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

I think I found the problem, there were 837 trades, if we reduce the $20 (spread) per winning trade, we will get a significantly lower profit.. but profit is profit..

The link i posted showed "profit" of 21030.00

though if we get rid of the winning trades' spread, the result decreases to 10550

It's still huge but that might be the problem I was having?

Anyways look into it when you have time
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #157 (permalink)  
Old 03-01-2006, 01:50 PM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

I believe I found the problem, I remembed that I since I put 5 in the take profit, the stop loss ill be 7 so I have to do once again $20 x number of "winning" trade. Basically i have to take the result from the beginning and substract $20 x number of total trades..

So started with 21,030.00 minus 16,740.00 which leaves with 4,290.00 Though by reversing the buy with sell ends up with a -7000 if not more... 4k is still good profit after ~4 months.

Let me know what you think
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #158 (permalink)  
Old 03-04-2006, 06:20 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,973
Thanks: 119
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Gaz, TP and SL should = 5, as spread is included already. Reversed positions will lost not only 1x the spread, but 2 times the spread which is 4 pips. Eg. If a long position lost -7 pips, then if it were short position, it would win only 3 pips, not 5, not 7 pips. This is the main problem with reversing.

Have you try setting TP = 9 pips?
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #159 (permalink)  
Old 03-05-2006, 12:45 AM
gazuz's Avatar
Senior Trader and Moderat
 
Join Date: Aug 2004
Posts: 768
Thanks: 1
Thanked 8 Times in 5 Posts
gazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to allgazuz is a name known to all
Default

I thought the TP of 5 didnt include spread (meaning the balance starts at -2 when opening the trade, and closes at +5)

And no I have no tried it, im really just messing around with anything I can get my hands on to and see if something happens...
__________________
____________________________\¦/
___________________________(ò ó)
______________________o0o___(_)___o0o__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
___¦_____¦_____¦_____¦_____¦_____¦_____¦
¦_____¦_____¦_____¦_____¦_____¦_____¦__
Reply With Quote
  #160 (permalink)  
Old 02-08-2008, 08:37 AM
Sophomore
 
Join Date: Sep 2007
Posts: 35
Thanks: 0
Thanked 1 Time in 1 Post
derrekmay is on a distinguished road
Default

On witch timeframe and pair are you using this system?
Reply With Quote
Reply


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Rsx djsin Indicators 4 10-26-2005 02:10 PM


All times are GMT. The time now is 07:23 PM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now

Main Menu

Economic Forecast