|
|
Or, use your gamerDNA username: (more...)
| ||||||
| |
![]() |
| | LinkBack | Thread Tools | Rate Thread | Display Modes |
| | #16 (permalink) |
| Real Life Apologist | I've been using the Investopedia simulator for a while now. You see a price quoted in real time. You go to make a trade, and it shows the price from 20 minutes ago. But it won't execute those prices from 20 minutes ago - only the prices the system sees as valid 20 minutes after it is executed. The only real advantage I can see is if you decide to cancel your order within 20 minutes knowing the price is going to change. That's not a huge advantage. |
| | |
| | #18 (permalink) |
| Registered User Join Date: Sep 2002
Posts: 2,666
| Dunno how shitty of a company you have to be to not offer real time quotes. I can get real time shit for free with a paper trading account from thinkorswim, or even straight on MarketWatch - Stock Market Quotes, Business News, Financial News Though it might be some regulation somewhere. |
| | |
| | #19 (permalink) |
| It's Lord of the Flies time. Join Date: Jun 2006
Posts: 3,486
| I joined.
__________________ "If you want the ultimate, you've got to be willing to pay the ultimate price. It's not tragic to die doing what you love." My favorite comment (-1): "Your posts make me want to gouge my own eyes out." |
| | |
| | #20 (permalink) | ||
| Registered User Join Date: Jan 2002
Posts: 1,920
| Quote:
Quote:
In case anyone wants to automate their trading through excel. This is 1000% untested and guaranteed to fail at some point, but I'm lazy. Transaction type takes values 1-4 Code: Function trade(Symbol, Transaction, Quantity)
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate ("http://simulator.investopedia.com/Trade/TradeStock.aspx")
IE.StatusBar = True
IE.Toolbar = True
IE.Visible = True
IE.Resizable = True
IE.AddressBar = True
Do While IE.ReadyState <> 4 'READYSTATE_COMPLETE'
DoEvents
Loop
IE.Document.forms(0).all("ctl00$MainPlaceHolder$symbolTextbox").Value = Symbol
IE.Document.forms(0).all("ctl00$MainPlaceHolder$transactionTypeDropDown").Value = Transaction
IE.Document.forms(0).all("ctl00$MainPlaceHolder$quantityTextbox").Value = Quantity
IE.Document.forms(0).all("ctl00$MainPlaceHolder$durationTypeDropDown").Value = "1"
IE.Document.forms(0).all("ctl00$MainPlaceHolder$previewOrderButton").Click
Do While IE.ReadyState <> 4 'READYSTATE_COMPLETE'
DoEvents
Loop
IE.Document.forms(0).all("ctl00$MainPlaceHolder$submitOrder").Click
Do While IE.ReadyState <> 4 'READYSTATE_COMPLETE'
DoEvents
Loop
IE.Quit: Set IE = Nothing
End Function Last edited by prescient63; 10-26-2009 at 06:48 AM.. | ||
| | |
| | #23 (permalink) |
| Registered User Join Date: Jan 2002
Posts: 1,920
| You can't cover shorts until the short actually gets into your account instead of queing it behind your short. IE i shorted a stock 5 mins ago and now I want to cover, I have to wait 15mins. But that's life and I got street cred for soem trade according to the game. So obviously you're all going down =P |
| | |
![]() |
|
| Thread Tools | |
| Display Modes | Rate This Thread |
| |