InvestorsHub Logo
Followers 4
Posts 174
Boards Moderated 1
Alias Born 01/10/2003

Re: neko post# 260

Wednesday, 10/28/2015 2:16:18 AM

Wednesday, October 28, 2015 2:16:18 AM

Post# of 289
I had to modify the script again, so that on the first price (when ovshares is 0) we calculate shares based on control (not vcontrol).

So here is the correct script:

BEGIN {
control = 2000
vcontrol = 2 * control
cash = control
orig = control
}

{
price = $1
value = shares * price + cash
ovshares = vshares
oshares = shares
vshares = int(vcontrol / price)

if (ovshares == 0)
shares = int(control / price)
else
if (vshares > ovshares)
shares = oshares + (vshares - ovshares)
else
shares = oshares - (ovshares - vshares)

if (shares < 0)
shares = 0

cash = value - shares * price
if (cash < 0)
{
value += -1*cash
orig += -1*cash
cash = 0
}
print price" "shares" "cash" "value" "orig
}

Praveen Puri
Author of "Stock Trading Riches"
The Stock Trading Riches System discussion board: http://investorshub.advfn.com/boards/board.aspx?board_id=19287

Join InvestorsHub

Join the InvestorsHub Community

Register for free to join our community of investors and share your ideas. You will also get access to streaming quotes, interactive charts, trades, portfolio, live options flow and more tools.