[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Percent (Stock Backtesting)



PureBytes Links

Trading Reference Links

In a message dated 00-08-03 07:15:58 EDT, you write:

<< Is there any way how to track the profits and loss in percent of the
 share/contract itself?
 
 js >>

You could do it with Omega functions.

When a Buy Position ends: 

PctChng = ((ExitPrice(1) - EntryPrice(1))/ EntryPrice(1))*100 ;

A question:

How do you track stock performance accounting for stock splits 
Is avepercent/trade change the best way to go?.

Jim