04-06-2006, 04:59 PM
Member
Join Date: Nov 2005
Posts: 79
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.
04-06-2006, 05:03 PM
Senior Member
Join Date: Oct 2005
Posts: 994
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?
04-06-2006, 05:29 PM
Senior Member
Join Date: Oct 2005
Posts: 994
Statement update!
Maybe it's a phenomena
!
100USD to
315USD in 4 hours!
Attached Images
Attached Files
04-06-2006, 05:52 PM
Member
Join Date: Nov 2005
Posts: 79
Quote:
Originally Posted by codersguru
Where are the 3 SL?
...in the future, waiting.
04-06-2006, 05:52 PM
Senior Member
Join Date: Oct 2005
Posts: 994
Statement update!
My profit dropped down to
144 , I'm writting a profit protector code right now!
04-06-2006, 06:02 PM
Member
Join Date: Oct 2005
Posts: 39
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
04-06-2006, 06:06 PM
Senior Member
Join Date: Oct 2005
Posts: 994
profit protector!
This is my profit protector code:
PHP Code:
extern bool ProtectProfit = true ; extern double ProfitToProtect = 150 ; int start () { ... if( ProtectProfit ) ProfitProtect ( ProfitToProtect ); .... } void ProfitProtect ( double profit ) { int total = OrdersTotal (); double MyCurrentProfit = 0 ; for ( int cnt = 0 ; 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 = 0 ; 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 ); } }
04-06-2006, 06:08 PM
Senior Member
Join Date: Oct 2005
Posts: 994
Loss Protector!
Quote:
Originally Posted by lomme
...in the future, waiting.
We can write
Loss Protector too!
04-06-2006, 06:10 PM
Senior Member
Join Date: Oct 2005
Posts: 994
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!
04-06-2006, 06:12 PM
Senior Member
Join Date: Oct 2005
Posts: 994
Quote:
Originally Posted by codersguru
This is my profit protector code:
PHP Code:
extern bool ProtectProfit = true ; extern double ProfitToProtect = 150 ; int start () { ... if( ProtectProfit ) ProfitProtect ( ProfitToProtect ); .... } void ProfitProtect ( double profit ) { int total = OrdersTotal (); double MyCurrentProfit = 0 ; for ( int cnt = 0 ; 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 = 0 ; 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?
Thread Tools
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
All times are GMT. The time now is 01:34 AM .