Page 1 of 1

FOREX: How to turn $1,000 into $10,000 90% wins

Posted: Thu Jan 18, 2007 7:26 pm
by alichambers
Hi,

I was following some TRO links on the TS site and came across this:

https://www.tradestation.com/Discussion ... r_ID=13031

There's a link on the right hand side that says:

"FOREX: How to turn $1,000 into $10,000 90% wins"

I would be interested in reading this, but am not a TS user and therefore do not have a login. I use Amibroker. Can anyone provide another link or copy please?

Many thanks,
Alex

Posted: Fri Jan 19, 2007 6:27 am
by TheRumpledOne
Posted - 01/10/2006 08:10:46

I saw this last night:

"How To Make A Million In 40 Trades"

http://www.tradeology.com/million-dollar-trade.html

I figured if he can, why can't anyone?

So I created...

"How to turn $1,000 into TEN TRILLION DOLLARS in a year and still take 2 weeks off!"

You start with $1000.00 and make 10 pips a day trading FOREX.


Attached is the Excel file.


*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.


Code: Select all

{$TRILLION}
 
{Programmer:  Avery T. Horton, Jr.  aka TheRumpledOne

*** ATTENTION FELLOW TRADERS ***

THIS IS FOR DEMONSTRATION PURPOSES ONLY.
}
 
Inputs:   
 
iMaxDollarLoss(100),  // IN DOLLARS
iTarget(130),         // IN DOLLARS
iQuantity(1),         // IN LOTS / CONTRACTS / SHARES
 
iActionBar(0);        // BAR TO BASE ACTION ON, 0 = CURRENT BAR, 1 = 1 BAR AGO
 
Variables:
 
sLgEntryTrigger( false ),   // IF TRUE BUY (LONG)
sShEntryTrigger( false ),   // IF TRUE SELL (SHORT)
 
DayTop( 0 ),                // TOP OF PREVIOUS DAY'S CANDLE BODY
DayBottom( 0 ),             // BOTTOM OF PREVIOUS DAY'S CANDLE BODY
DayHigh( 0 ),               // TODAY'S HIGH
DayLow( 0 ) ;               // TODAY'S LOW
 
 
{*************************************************}
{ INITIALIZE                                      }   
{*************************************************}
 
DayHigh    = HighD(0) ;   
DayLow     = LowD(0) ;
 
DayBottom  = minlist(OpenD(1),CloseD(1));
DayTop     = maxlist(OpenD(1),CloseD(1));
 
 
 
{*************************************************}
{ ENTRIES                                         }   
{*************************************************}
 
 
sLgEntryTrigger = ( close crosses above DayTop ) ;    // TRUE IF TOP CROSSED 
 
sShEntryTrigger = ( close crosses below DayBottom) ;  // TRUE IF BOTTOM CROSSED
 
if MARKETPOSITION = 0 
and sLgEntryTrigger[iActionBar]
   then buy iQuantity shares this bar on close;
 
if MARKETPOSITION = 0 
and sShEntryTrigger[iActionBar]
    then sell short iQuantity shares this bar on close;
 
 
{*************************************************}
{ STOPS                                           }   
{*************************************************}
 
SetStopPosition ;
 
SetProfitTarget( iTarget ) ;
 
SetStopLoss( iMaxDollarLoss ) ;
 
SetExitOnClose;