Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > The "XO"-Method


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (6) Thread Tools Display Modes
  #121 (permalink)  
Old 05-19-2007, 01:56 PM
jimven's Avatar
Senior Member
 
Join Date: Mar 2007
Location: Upstate New York
Posts: 126
jimven is on a distinguished road
Hi!

Well I did try both indicators and they look essentially the same if the TF's are the same, but the second one has the code to display an object in it, as I wrote before. I was not able to get the object to display or to see any other difference between the two indicators from a visual standpoint.

Right now, it is the weekend, and the demo trading server (IBFX) is not sending ticks. Do I need those to get the object to display? As I recall in my previous efforts, I was unsuccessful.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #122 (permalink)  
Old 05-21-2007, 09:29 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,130
ValeoFX is on a distinguished road
Quote:
Originally Posted by jimven
Hi!

Well I did try both indicators and they look essentially the same if the TF's are the same, but the second one has the code to display an object in it, as I wrote before. I was not able to get the object to display or to see any other difference between the two indicators from a visual standpoint.

Right now, it is the weekend, and the demo trading server (IBFX) is not sending ticks. Do I need those to get the object to display? As I recall in my previous efforts, I was unsuccessful.
Jimven, I do apologise for not having understood your question in the first place. However, as I understand it now, you do not see the value of the higher TF such as the 60M displayed on the 5M chart? Right?

If that is the case, open up the indicator and scroll down to Line 102 and change the value back to 800 (now set @ 1200) and on Line 109 make that number 850 and you should see the values displayed on the 5m chart. By adjusting these values, you move the actual reading of the RSI from left to right and vice versa.

Let me know whether it solved your problem, please.

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #123 (permalink)  
Old 05-21-2007, 09:38 PM
jimven's Avatar
Senior Member
 
Join Date: Mar 2007
Location: Upstate New York
Posts: 126
jimven is on a distinguished road
ValeoFX:

I made the changes, but see no visual difference. Here's what my screen looks like after the changes:
rsi.gif

The code has been changed as follows:

int Line1( string Text, int xOffset, int yOffset,int iCorner) //LINE
{ ObjectCreate(Text,OBJ_LABEL , In_Window, 0, 0 );
ObjectSet (Text,OBJPROP_CORNER , iCorner);
ObjectSet (Text,OBJPROP_XDISTANCE , 800 );// 800
ObjectSet (Text,OBJPROP_YDISTANCE , 10 );
ObjectSet (Text,OBJPROP_BACK , True );
}
int Line2( string Text, int xOffset, int yOffset,int iCorner)
{ ObjectCreate(Text,OBJ_LABEL , In_Window , 0, 0 );
ObjectSet (Text,OBJPROP_CORNER , iCorner);
ObjectSet (Text,OBJPROP_XDISTANCE , 850 );//850
ObjectSet (Text,OBJPROP_YDISTANCE , 10 );
ObjectSet (Text,OBJPROP_BACK , True );

Thanks for your help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #124 (permalink)  
Old 05-23-2007, 07:18 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,130
ValeoFX is on a distinguished road
Jimven..........

When you load the indicator, you will be asked for the inputs such as TF, etc. The "In_Window" is defaulted as 3. In this case just change it to window 1 and you should see the RSI figure displayed. I attach an example for you.

Let me know whether you managed to get it to work. It is actually very simple.

Best wishes.
Attached Images
File Type: gif jimven.gif (30.9 KB, 913 views)
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #125 (permalink)  
Old 05-23-2007, 02:04 PM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,130
ValeoFX is on a distinguished road
Updated Template.......

Due to some "discrepancies" with the entries and the position of the Stochastic, I have changed the set-up slightly.

I know that "less is more", but in this instance I have found this addition to be beneficial, especially when your trade has run significantly and you are not sure where to exit.

Let me know if there are any questions and/or suggestions.

Best wishes.
Attached Files
File Type: tpl tsd-forum.tpl (110.2 KB, 228 views)
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #126 (permalink)  
Old 05-23-2007, 04:39 PM
Senior Member
 
Join Date: Jan 2007
Posts: 222
Poocher is on a distinguished road
I give up.
I can't see the change in the new template.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #127 (permalink)  
Old 05-23-2007, 09:24 PM
jimven's Avatar
Senior Member
 
Join Date: Mar 2007
Location: Upstate New York
Posts: 126
jimven is on a distinguished road
Quote:
Originally Posted by ValeoFX
When you load the indicator, you will be asked for the inputs such as TF, etc. The "In_Window" is defaulted as 3. In this case just change it to window 1 and you should see the RSI figure displayed. I attach an example for you.

Let me know whether you managed to get it to work. It is actually very simple.

Best wishes.

WONDERFUL! It works very well! Thank you!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #128 (permalink)  
Old 05-24-2007, 07:05 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,130
ValeoFX is on a distinguished road
Quote:
Originally Posted by Poocher
I give up.
I can't see the change in the new template.
In the new template, the 13/4/8 Stochastic is set to run in the front and the 5/3/3 in the background. BUT you will soon see the value of that during entries.

The 13/4/8 tells you the "bigger picture" while the "randy" little 5/3/3 makes all his visits on the way. Due to his excuberance, he may take you into retracements you do not want to be associated with.

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #129 (permalink)  
Old 05-24-2007, 03:05 PM
Senior Member
 
Join Date: Jan 2007
Posts: 222
Poocher is on a distinguished road
Quote:
Originally Posted by ValeoFX
In the new template, the 13/4/8 Stochastic is set to run in the front and the 5/3/3 in the background. BUT you will soon see the value of that during entries.

The 13/4/8 tells you the "bigger picture" while the "randy" little 5/3/3 makes all his visits on the way. Due to his excuberance, he may take you into retracements you do not want to be associated with.

Best wishes.
Great explaination!
I'll look for the bigger picture.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #130 (permalink)  
Old 06-01-2007, 10:46 AM
Big Joe's Avatar
Senior Member
 
Join Date: May 2006
Location: Belgium
Posts: 503
Big Joe is an unknown quantity at this point
Dear Valeo,

You talk about a new 5 tf xo ?

What's up ?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
triple cci woodies, Xo method revised, xo revised, zz_mtf_xo_2, xo_method, forex, AllAverages_v2.3, ZZ_MTF_X0-2-MOD

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/xo-method/5845-xo_method-revised.html
Posted By For Type Date
scammers on TSD? - Page 4 - StrategyBuilderFX This thread Refback 06-16-2008 07:39 PM
scammers on TSD? - Page 4 - StrategyBuilderFX This thread Refback 06-16-2008 11:38 AM
scammers on TSD? - Page 4 - StrategyBuilderFX This thread Refback 06-16-2008 11:36 AM
Forums - 500$ - How to start?? This thread Refback 12-02-2007 04:21 AM
【Forex】MetaTrader Part W【CFD,&Futures】 This thread Refback 08-25-2007 03:23 AM
Forex TSD| Metatrader Indicators and Experts Advisors This thread Refback 08-05-2007 09:39 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Some Revised Indicators Maji Indicators - Metatrader 4 19 06-11-2008 12:30 AM


All times are GMT. The time now is 03:56 AM.



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