Forex



Go Back   Forex Trading > Trading systems > Ema Cross






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
 
Thread Tools Display Modes
  #11 (permalink)  
Old 04-06-2006, 04:59 PM
Member
 
Join Date: Nov 2005
Posts: 79
lomme is on a distinguished road
Quote:
Originally Posted by codersguru
My is Equity is 266.98 why not to risk 100% of 100USD?
Because 3 SL hittings in a row now and you are gone.
With real money that would be like gambling in casino.
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 04-06-2006, 05:03 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Arrow

Quote:
Originally Posted by lomme
Because 3 SL hittings in a row now and you are gone.
With real money that would be like gambling in casino.
Where are the 3 SL?
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 05:29 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Talking Statement update!

Maybe it's a phenomena !

100USD to 315USD in 4 hours!
Attached Images
File Type: jpg screen.JPG (130.4 KB, 1799 views)
Attached Files
File Type: htm Statement.htm (6.4 KB, 386 views)
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 05:52 PM
Member
 
Join Date: Nov 2005
Posts: 79
lomme is on a distinguished road
Quote:
Originally Posted by codersguru
Where are the 3 SL?
...in the future, waiting.
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 04-06-2006, 05:52 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Unhappy Statement update!

My profit dropped down to 144 , I'm writting a profit protector code right now!
Attached Files
File Type: htm Statement.htm (6.4 KB, 293 views)
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 06:02 PM
Member
 
Join Date: Oct 2005
Posts: 39
mj10 is on a distinguished road
as always

as always it happen
like u can take my example of EA
it performed good for like 5 to 9 hour after that loss profit is less and loss is great by the way i would suggest to use time function and protect profit is great feature to

i think profit is now over
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 04-06-2006, 06:06 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Lightbulb profit protector!

This is my profit protector code:

PHP Code:
extern bool      ProtectProfittrue;
extern double    ProfitToProtect 150;



int start()
{
...
if(
ProtectProfit)
   
ProfitProtect(ProfitToProtect);
....
}



void ProfitProtect(double profit)
{
      
int total  OrdersTotal();
      
double MyCurrentProfit=0;
      for (
int cnt cnt total cnt++)
      {
         
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
         if (
OrderMagicNumber() == MagicNumber)
            
MyCurrentProfit += OrderProfit();
      }
      Print(
"My Current Profit is : " DoubleToStr(MyCurrentProfit,2) + " While My Profit Target is " DoubleToStr(profit,2));
      if(
MyCurrentProfit>=profit)
         
CloseAll();
}
void CloseAll()
{
      
int total  OrdersTotal();
      for (
int cnt cnt total cnt++)
      {
         
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
         if (
OrderMagicNumber() == MagicNumber)
            if(
OrderType()==OP_BUY)
               
OrderClose(OrderTicket(),OrderLots(),Bid,Slippage,Violet);
            if(
OrderType()==OP_SELL)   
               
OrderClose(OrderTicket(),OrderLots(),Ask,Slippage,Violet);
      }

__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 06:08 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Lightbulb Loss Protector!

Quote:
Originally Posted by lomme
...in the future, waiting.
We can write Loss Protector too!
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 06:10 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Talking

Quote:
Originally Posted by mj10
as always it happen
like u can take my example of EA
it performed good for like 5 to 9 hour after that loss profit is less and loss is great by the way i would suggest to use time function and protect profit is great feature to

i think profit is now over
Don't cry for that , because that's simply what the trading is!
Take profit and stop loss as soon as you can!
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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 04-06-2006, 06:12 PM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 994
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Talking

Quote:
Originally Posted by codersguru
This is my profit protector code:

PHP Code:
extern bool      ProtectProfittrue;
extern double    ProfitToProtect 150;



int start()
{
...
if(
ProtectProfit)
   
ProfitProtect(ProfitToProtect);
....
}



void ProfitProtect(double profit)
{
      
int total  OrdersTotal();
      
double MyCurrentProfit=0;
      for (
int cnt cnt total cnt++)
      {
         
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
         if (
OrderMagicNumber() == MagicNumber)
            
MyCurrentProfit += OrderProfit();
      }
      Print(
"My Current Profit is : " DoubleToStr(MyCurrentProfit,2) + " While My Profit Target is " DoubleToStr(profit,2));
      if(
MyCurrentProfit>=profit)
         
CloseAll();
}
void CloseAll()
{
      
int total  OrdersTotal();
      for (
int cnt cnt total cnt++)
      {
         
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
         if (
OrderMagicNumber() == MagicNumber)
            if(
OrderType()==OP_BUY)
               
OrderClose(OrderTicket(),OrderLots(),Bid,Slippage,Violet);
            if(
OrderType()==OP_SELL)   
               
OrderClose(OrderTicket(),OrderLots(),Ask,Slippage,Violet);
      }

I've set my profit protectot level to 150USD and I'll (ojala) get them!
150USD from 100USD in 5 hours are ??? what?
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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
forex, MaChannel, manual, moving average, pips, profitable system

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
Moving Average newdigital Indicators - Metatrader 4 640 11-01-2009 07:33 AM
XP Moving Average! codersguru Ema Cross 425 10-24-2009 04:07 PM
How to calculate Moving Average of a Moving Average babarmughal Expert Advisors - Metatrader 4 4 05-31-2009 03:05 PM
list all MA ( moving verage ) Experts here giraia_br Expert Advisors - Metatrader 4 2 10-27-2007 01:20 PM
non lag moving average kidhudi Indicators - Metatrader 4 1 07-26-2006 01:52 PM


All times are GMT. The time now is 01:34 AM.



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