Forex



Go Back   Forex Trading > Trading systems > Ema Cross
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 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, 1802 views)
Attached Files
File Type: htm Statement.htm (6.4 KB, 387 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, 296 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


Currently Active Users Viewing This Thread: 2 (1 members and 1 guests)
chris_swiss
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 643 11-17-2009 02:53 PM
XP Moving Average! codersguru Ema Cross 426 11-14-2009 09:24 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:51 PM.



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