$TRILLION STRATEGY

trading strategies and money management discussion, code, results

Moderator: moderators

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Thu Jun 25, 2009 3:01 am

dznmrd wrote:
TheRumpledOne wrote: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;


So this money mangement suggests that i must invest 100% of my money in a trade and bank 10pips target = 10% daily growth.

What if my trade flunks and i lose 50pip....50% loss in one day or maybe 100%?

I think investing 10% and making 100pip per day is more realistic for progression money management.

BTW, most brokers dont have billion dollar fundpool. .. so if your dreaming of trillions i bet its gonna remain a daydream forevah



1) RISK = STOP LOSS * POSITION SIZE. If you trade your full buying power, then your risk should NOT be 50% of your portfolio.

2) Of course most brokers don't. You would move off a retail platform and trade directly with the banks who to have billions.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

ntb10071981
rank: <50 posts
rank: <50 posts
Posts: 2
Joined: Wed Jun 24, 2009 8:39 pm
Reputation: 0
Gender: Male
Contact:

Postby ntb10071981 » Fri Jun 26, 2009 3:57 pm

with a stop loss of 5 pips, when the triangle is clearly broken, wether to the upside'breaking the downtrend vs the flat bottom' or breaking the uptrend, vs the flat top' 20 trades a d day at a 50 percent accuracy would make 100 pips, right, i know its just a theory, but it could work, if applied to key 30 and 60 minute support and resistance levels creating the undecided trader action showin in the decending trendline;or accending; anyway, id love to hear any sugjestions to improving this simple strat

User avatar
Kenyuki
rank: 150+ posts
rank: 150+ posts
Posts: 186
Joined: Fri Sep 25, 2009 8:00 pm
Reputation: 0
Gender: None specified

Postby Kenyuki » Tue Oct 20, 2009 7:38 pm

Just curious:

This thread is over a year old now. Anybody actually made their 1st trillion in the meantime?

Thanks,
Ken.

User avatar
Patch
rank: 500+ posts
rank: 500+ posts
Posts: 941
Joined: Sat Jan 06, 2007 6:13 pm
Reputation: 0
Location: Virginia
Real name: Jeff
Gender: Male
Contact:

Postby Patch » Tue Oct 20, 2009 8:07 pm

Kenyuki

I am glad to see you exploring this thread. You ask a great question, and I hope you go through this thread as it is the precursor of the BuyZone and there are definite helps and insights waiting for you.

Patch
In VA
ENOUGH being a Yalie for me Back to the Sea. "What i can lose, i can win" "YES YOU CAN" - dragon33 -"Pick one method and one pair and stick with them until you master it. "The choice is yours - success or failure." TRO

User avatar
pineapples
rank: <50 posts
rank: <50 posts
Posts: 45
Joined: Fri May 04, 2007 11:49 am
Reputation: 0
Location: Belgium
Gender: Male

Postby pineapples » Sat Feb 06, 2010 6:52 pm

@Kenyuki,
I got to $999,999,999,999.00 and went bust on the last trade. :D

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sat Feb 06, 2010 8:43 pm

Let's be serious.

Thanking you in advance for you cooperation.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
pineapples
rank: <50 posts
rank: <50 posts
Posts: 45
Joined: Fri May 04, 2007 11:49 am
Reputation: 0
Location: Belgium
Gender: Male

Postby pineapples » Sun Feb 07, 2010 11:59 am

OK seriously - I may well have posted this before here:
This strategy is a 99% winner if the price is under the prev day high and there is positive news for your pair.
As it's 99% good and not 100%, don't go all in on any one trade!

arkan1976
rank: 150+ posts
rank: 150+ posts
Posts: 492
Joined: Thu May 06, 2010 9:57 am
Reputation: 203
Gender: None specified

Postby arkan1976 » Thu May 06, 2010 10:13 am

Hi TRO and others, wanted to introduce myself. This is my first message. I'm from Spain, so please excuse my poor English.
I have been following this system and I find very interesting.
I wanted to ask if for the system to be profitable, we must enter the four currency pairs at the right time?
The TP should be higher than the stop loss?
And finally, serves for all closed meetings (asian, london, NY?

Thanks and regards.

arkan1976
rank: 150+ posts
rank: 150+ posts
Posts: 492
Joined: Thu May 06, 2010 9:57 am
Reputation: 203
Gender: None specified

Postby arkan1976 » Thu May 13, 2010 11:59 pm

Well, I'll start with the system as you provided Buno TRO.
I have three day use. I'll start showing the operations I have done and I will try to do it daily.
I'm trying to apply the best stop loss, and when you see it work is better than 20 pips. I am open to suggestions.

Image

This OK

Image

this ok

Image

This failed

Image

this ok

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Fri May 14, 2010 11:55 am

It may not work everyday but that's just part of trading.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “strategy trading & money management”