Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
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
  #11 (permalink)  
Old 12-24-2006, 08:05 PM
Junior Member
 
Join Date: Nov 2006
Posts: 5
ton8e is on a distinguished road
SAR if you get opposing signal?

What if you're in the middle of a long and it hasn't quite hit your 3 bar stop yet and you get a Stoch. RSI Osc. divergence signal to go short? Would you do a stop and reversal once it crosses back down 80 or would you wait for it to hit the 3 bar stop?

It makes sense to do the SAR, but I thought I would ask anyway just for confirmation.

Btw ... I think this system is awesome. Very simple and very mechanical. I've been having fun manually backtesting it and so far it looks like a real winner.

Thanks for the post!
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
  #12 (permalink)  
Old 12-25-2006, 03:33 AM
Senior Member
 
Join Date: Feb 2006
Posts: 1,211
et_phonehome_2 is on a distinguished road
I know how divergence work, but how does one take advantage of it prior to it happening?
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
  #13 (permalink)  
Old 12-25-2006, 04:19 AM
CP6 CP6 is offline
Senior Member
 
Join Date: Jun 2006
Posts: 102
CP6 is on a distinguished road
thanks for sharing the video...really enjoy it.

But....but...whatever system/method/approach have the power/weakness because the market is not static. Sometime it trendy & another time it whipsaw/choppy. Thats why we saw many approach in this world either it for trendy or whipsaw market.

So, choose what best for u & what give the most high percentage of winning. Nobody know where the price heading. Only guessing by the technical/fundemental analysis that we practise. Nah, give a big attention to money management, this will keep u stay in the market for a longer period.

just my 2 cent.

thanks.
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
  #14 (permalink)  
Old 12-26-2006, 10:30 AM
Wackena's Avatar
Senior Member
 
Join Date: May 2006
Posts: 216
Wackena is on a distinguished road
I thought the Adim Sadak video was very good. I put together this code for the 3 candles trailing stop (ts). I wanted the ts applied after order was in profit. I used the input GapTS to adjust how many pips in profit before ts was set. It was interesting to watch the visual mode in strategy tester to see this dynamic ts working.

I have not been able to find an oscillator indicator that emulates, anywhere close, to Stochastic RSI Oscillator indicator used on the VT platform in the video. I've tried MT4 RSI, Stochastic, and Stochastic RSI indicator and none are even close. If someone knows of an indicator for MT4 that emulates the one in this video, please advise where to download.

Wackena

Code:
      extern int  GapTS = 20;
      double ShortTS, LongTS;

      int c, n, p;
      c=-1; n=0; p=0;
      while(n<6)
      {
         if(High[c]<High[c-1] && Low[c]>Low[c-1]) n-=1;
         if(High[c]<High[-c] )
         n+=1;
         c--;
         p+=1;
         if(n==3) break;
      }
      ShortTS=High[Highest(NULL,0,MODE_HIGH,p,1)];
      
      c=-1; p=0;
      while(n<6)
      {
         if(High[c]<High[c-1] && Low[c]>Low[c-1]) n-=1;
         if(Low[c]>Low[-c])
         n+=1;
         c--;
         p+=1;
         if(n==3) break;
      }
      LongTS=Low[Lowest(NULL,0,MODE_LOW,p,1)];

//          ====== Trailing Stop  Routine ======
  
   total = OrdersTotal();
   for(cnt=0;cnt<total;cnt++)
      {
      OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
      if((OrderType() <= OP_SELL) && (OrderSymbol() == Symbol()) && (OrderMagicNumber() == 12345))
         {
         if(OrderType() == OP_BUY)
            {
            if(MyOrdersTotal() > 0 && OrderClosePrice()-OrderOpenPrice()>GapTS*Point)
               {
                  OrderModify(OrderTicket(),OrderOpenPrice(),LongTS,OrderTakeProfit(),0,GreenYellow);
                  return(0);
               }                          
             }

            if(OrderType() == OP_SELL)
               {
               if(MyOrdersTotal() > 0 && OrderOpenPrice()-OrderClosePrice()>GapTS*Point )
                  {
                     OrderModify(OrderTicket(),OrderOpenPrice(),ShortTS,OrderTakeProfit(),0,Red);
                     return(0);              
                  }
                }
             }
          }
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
  #15 (permalink)  
Old 12-26-2006, 11:36 AM
Junior Member
 
Join Date: Sep 2006
Posts: 7
numanuma is on a distinguished road
try this setting (x,1,1) on stoch ... x=can be any number ..
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
  #16 (permalink)  
Old 12-26-2006, 02:50 PM
Wackena's Avatar
Senior Member
 
Join Date: May 2006
Posts: 216
Wackena is on a distinguished road
Quote:
Originally Posted by numanuma
try this setting (x,1,1) on stoch ... x=can be any number ..
Thank you. Not exact, but as close as I've seen.

Wackena
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
  #17 (permalink)  
Old 12-26-2006, 02:52 PM
Junior Member
 
Join Date: Dec 2005
Posts: 11
Jetheat is on a distinguished road
Hi Guys, I'm glad you like my video.

Amin
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
  #18 (permalink)  
Old 12-26-2006, 03:35 PM
raj raj is offline
Member
 
Join Date: Apr 2006
Posts: 37
raj is on a distinguished road
Ok, here is the Stochastic RSI indicator I found on this forum that was posted by newdigital.
Attached Files
File Type: mq4 Stochastic RSI.mq4 (2.7 KB, 127 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
  #19 (permalink)  
Old 12-26-2006, 03:57 PM
Junior Member
 
Join Date: Sep 2006
Posts: 7
numanuma is on a distinguished road
Quote:
Originally Posted by Jetheat
Hi Guys, I'm glad you like my video.

Amin
thanks amin .. great effort ..
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
  #20 (permalink)  
Old 12-26-2006, 05:53 PM
Wackena's Avatar
Senior Member
 
Join Date: May 2006
Posts: 216
Wackena is on a distinguished road
Quote:
Originally Posted by Jetheat
Hi Guys, I'm glad you like my video.

Amin
Yes indeed, I liked your video. If you do more videos, please post notice.

Wackena
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
rsi div


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
Beautiful trading video : GMMA and Pivots radicalmoses Non Related Discussions 2 02-20-2007 04:05 PM
A music video and spoof of Ben Bernanke LazyForex Non Related Discussions 1 09-08-2006 03:38 PM
Fibonacci Video link Foreverold Non Related Discussions 1 03-24-2006 12:07 PM


All times are GMT. The time now is 07:50 PM.



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