Forex



Go Back   Forex Trading > Trading systems > CatFx50
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

View Poll Results: How many of you are trading live?
Yes 980 77.29%
No 288 22.71%
Voters: 1268. You may not vote on this poll

Reply
 
Thread Tools Display Modes
  #481 (permalink)  
Old 01-13-2006, 09:24 AM
nina's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Barcelona
Posts: 2,380
nina is on a distinguished road
Quote:
Originally Posted by BrunoFX
yes thank you, I have just seen it by testing these indicators. and thus if I included/understood the N°1 image well: eur/usd, you put 2 indicators to have the points of color and the flêches. Just another question, did you change parameters in the property of the indicators?
Hi, Bruno!

I'm testing all of them. The arrow you see belongs to CatFX50_v2mookfx.

Time to trade: I set it from 8:00 to 18:00.

Nina
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
  #482 (permalink)  
Old 01-13-2006, 09:27 AM
nina's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Barcelona
Posts: 2,380
nina is on a distinguished road
Quote:
Originally Posted by nina
Hi, buddies!!!!!!!!!!!!!!!!!

Entries: Update 10:26CET.

EURUSD, bought at 1.2064 (08:30CET). Made a high at 1.2077. +13 pips.

USDCHF, sold at 1.2823 (08:30CET). Made a low at 1.2812. +11 pips.

GBPUSD, bought at 1.7632 (08:00CET). Made a high at 1.7695. +63 pips.

TOTAL at 09:07CET: +87 pips.

Nina
Enjoy!

Nina
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
  #483 (permalink)  
Old 01-13-2006, 09:35 AM
BrunoFX's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 816
BrunoFX will become famous soon enough
Quote:
Originally Posted by nina
Hi, Bruno!

I'm testing all of them. The arrow you see belongs to CatFX50_v2mookfx.

Time to trade: I set it from 8:00 to 18:00.

Nina
es un método excelente, aclamación
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
  #484 (permalink)  
Old 01-13-2006, 09:41 AM
nina's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Barcelona
Posts: 2,380
nina is on a distinguished road
Quote:
Originally Posted by BrunoFX
es un método excelente, aclamación
Hi, BrunoFX!

We are having a gorgeous time indeed. But sooner than later we'll have to lose.

You'll see. So, trade it with care.

(Bruno, gracias. No existe el sistema mágico o infalible. Manéjalo con cuidado.)

Nina
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
  #485 (permalink)  
Old 01-13-2006, 09:49 AM
nina's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Barcelona
Posts: 2,380
nina is on a distinguished road
Hi, buddies!!!!!!!!!!!!!!!!!

Entries: Update 10:50CET.

EURUSD, bought at 1.2064 (08:30CET). Made a high at 1.2083. +19 pips.

USDCHF, sold at 1.2823 (08:30CET). Made a low at 1.2809. +14 pips.

GBPUSD, bought at 1.7632 (08:00CET). Made a high at 1.7715. +83pips.

TOTAL at 10:50CET: +116 pips.

Nina

Enjoy!

Nina
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
  #486 (permalink)  
Old 01-13-2006, 10:31 AM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 723
Kalenzo is on a distinguished road
I had a NET CONNECTION problem and missed morning trades ... it's so sad...
Anyway i've slowed somekind of exit strategy and here it is:
(I would like to post a new version of CatFX50K - with dont miss trades but after forum upgrade i cannot attach anything to my posts... )

So my exit is like this:
1) start trade (initial SL 34p)
2) when profit is 30p move sl to be
3) form there use ts 30p
4) when profit will reach 60p move sl to 55p
5) if price still goes up and is above 60p then use ts 15p
and exit on stop.

Here is the code for a long trade:

//MOVE SL
if((Bid-OrderOpenPrice()/Point) >= 30 && (Bid-OrderOpenPrice()/Point) <= 32)
{//2 pips margin
//move SL to BreakEven
GlobalVariableSet(Symbol()+" CatSL",OrderOpenPrice());
}
else if((Bid-OrderOpenPrice()/Point) > 32 && (Bid-OrderOpenPrice()/Point) < 60)
{//SET TS to 30 pips
if(GlobalVariableGet(Symbol()+" CatSL") < Bid-30*Point)
{
GlobalVariableSet(Symbol()+" CatSL",Bid-30*Point);
drawStopLine(Bid-30*Point,"CatSL",LightPink,5,0);
}
}
else if((Bid-OrderOpenPrice()/Point)>=60 && (Bid-OrderOpenPrice()/Point)<=62)
{//2 pips margin
//move SL to 55 PIPS profit
GlobalVariableSet(Symbol()+" CatSL",OrderOpenPrice()+55*Point);
}
else if((Bid-OrderOpenPrice()/Point)>62)
{//change TS to 15 pips
if(GlobalVariableGet(Symbol()+" CatSL") < Bid-15*Point)
{
GlobalVariableSet(Symbol()+" CatSL",Bid-15*Point);
drawStopLine(Bid-15*Point,"CatSL",LightPink,5,0);
}
}



What do U think about it?

Last edited by Kalenzo; 01-13-2006 at 10:47 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
  #487 (permalink)  
Old 01-13-2006, 10:40 AM
nina's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Barcelona
Posts: 2,380
nina is on a distinguished road
Quote:
Originally Posted by Kalenzo
I had a NET CONNECTION problem and missed morning trades ... it's so sad...
Anyway i've slowed somekind of exit strategy and here it is:
(I would like to post a new version of CatFX50K - with dont miss trades but after forum upgrade i cannot attach anything to my posts... )

So my exit is like this:
1) start trade
2) when profit is 30p move sl to be
3) form there use ts 30p
4) when profit will reach 60p move sl to 55p
5) if price still goes up and is above 60p then use ts 15p
and exit on stop.

Here is the code for a long trade:

//MOVE SL
if((Bid-OrderOpenPrice()/Point) >= 30 && (Bid-OrderOpenPrice()/Point) <= 32)
{//2 pips margin
//move SL to BreakEven
GlobalVariableSet(Symbol()+" CatSL",OrderOpenPrice());
}
else if((Bid-OrderOpenPrice()/Point) > 32 && (Bid-OrderOpenPrice()/Point) < 60)
{//SET TS to 30 pips
if(GlobalVariableGet(Symbol()+" CatSL") < Bid-30*Point)
{
GlobalVariableSet(Symbol()+" CatSL",Bid-30*Point);
drawStopLine(Bid-30*Point,"CatSL",LightPink,5,0);
}
}
else if((Bid-OrderOpenPrice()/Point)>=60 && (Bid-OrderOpenPrice()/Point)<=62)
{//2 pips margin
//move SL to 55 PIPS profit
GlobalVariableSet(Symbol()+" CatSL",OrderOpenPrice()+55*Point);
}
else if((Bid-OrderOpenPrice()/Point)>62)
{//change TS to 15 pips
if(GlobalVariableGet(Symbol()+" CatSL") < Bid-15*Point)
{
GlobalVariableSet(Symbol()+" CatSL",Bid-15*Point);
drawStopLine(Bid-15*Point,"CatSL",LightPink,5,0);
}
}



What do U think about it?

Hi, Kalenzo!

Let's try it!

Talk to Newdigital about your problems with posting.

I must go out now. See you.

Nina
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
  #488 (permalink)  
Old 01-13-2006, 12:51 PM
sadaloma's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 344
sadaloma is on a distinguished road
Anybody planning to do an EA with the catfx50k indicator? or is it not woth the effort because this system doesn't work well in automatic mode?

Sada
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
  #489 (permalink)  
Old 01-13-2006, 01:04 PM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 723
Kalenzo is on a distinguished road
Quote:
Originally Posted by sadaloma
Anybody planning to do an EA with the catfx50k indicator? or is it not woth the effort because this system doesn't work well in automatic mode?

Sada
I've got an EA - it works fine.
Idea is great - it's worth to create an EA.
Look on the screen - it realy works fine, so U can create one for yourself too
Attached Images
File Type: gif CatFx50EA.GIF (66.9 KB, 727 views)

Last edited by Kalenzo; 01-13-2006 at 01:07 PM.
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
  #490 (permalink)  
Old 01-13-2006, 01:39 PM
leightonbeaty's Avatar
Member
 
Join Date: Oct 2005
Posts: 84
leightonbeaty is on a distinguished road
CatFX50EA

Hi Kalenzo,

Have looked for download of Ea and cannot find it, can you post it.


tks

leighton
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
trading, histogram, CatFX50, catfx, forex tsd, kairi, search, forex, forex std, max bars to count, forex-tsd, forex-std, StepMA_stoch, level, cat50fx, drbob cci, catfx15M, camarilladt7v1, tsd forex, aNina, forextsd


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
CatFX50 Indicators nina CatFx50 80 08-04-2009 03:45 AM
CatFx50 5 Minute Testing jesseboy CatFx50 44 07-29-2009 01:18 PM
CATFX50 tutorial , help us dellan CatFx50 20 06-12-2007 11:38 AM
CatFx50 Indicators. KayLaw Indicators - Metatrader 4 6 04-03-2006 11:23 PM


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



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