Search results

  1. 2

    Generating correlated stock prices for simulating herd behaviour

    import numpy as np import pandas as pd C=[ [ 1.0, 0.6 ,0.3], [ 0.6 ,1.0 ,0.5],[ 0.3, 0.5 ,1.0]] mC=np.mat(C) U=np.linalg.cholesky(mC) cU=np.random.randn(10,3) * U pd.DataFrame(cU).corr()
  2. 2

    In finance, do some trading algorithms work by explicitly trying to manipulate/break other algorithm

    yes. some old ones were finding icebergs, pushing around poorly designed automarketmakers ,spoofs.
  3. 2

    Is there a programmer willing to help me???

    you can look for local minima or maxima ,google for a "peaks" lib, or calc slope. in all cases your answer will be from the past
  4. 2

    CFTC Proposes New Regulation on Automated Trading

    No. This is for brokers/clearers exchange members. Maybe can be lucrative for some
  5. 2

    Trying Their Luck

    what's interesting is that every winning algo from those contests is negative when running live
  6. 2

    Options Purchase Sites?

    http://www.optionsclearing.com/market-data/open-interest/
  7. 2

    Optimal Risk

    Capm , efficient frontier or similar
  8. 2

    The biggest news EVER to hit EliteTrader

    so someone pays them ~$100 to paper trade with tight risk limits. Then maybe get funded with tight risk limits. Tom Vu would love it.
  9. 2

    Using Options to Hedge an Outright Futures trade against ......

    in limit up/down the options still trade so you can buy/sell a synthetic
  10. 2

    Offering auto-trading long-only options system "sys13"

    Am I reading this correctly? You tested against data that you generated
  11. 2

    Meat Packers going after HFT

    collusion
  12. 2

    [data feed heuristic] May I download from some middle man ?

    It's a lot less cumbersome to get the data from a data provider than using ftp. instead of ftp.get you essentially use dataproviderAPI.get PM me i will write it for you
  13. 2

    Gamma Scalping Question - Purpose

    Its used to neutralize your delta
  14. 2

    Anyone recommend a good scenario/outcome graphing program/app for option strategies?

    i wrote one a while ago http://bit.ly/TFFL7V
  15. 2

    Implied Volatility vs. Forecasted Volatility

    http://vlab.stern.nyu.edu/
  16. 2

    Future spread and option margining, SPAN heuristic

    I wrote a Python wrapper that uses the cme margin api. $
  17. 2

    Sugar futures arbitrage

    You're comparing H raw to K refined
  18. 2

    Slippage

    thats not slippage. it's latency. It's clearer if you say to compensate for latency adjust prices. Using the word slippage just adds to confusion.
  19. 2

    Python Code Example

    def updatePortfolio(self, contract, position, marketPrice, marketValue, averageCost, unrealizedPNL, realizedPNL, accountName): self.myvariable = position def cxlAccountUpdates(self): self.connection.reqAccountUpdates(False,"DU666") PM me. I will write it for you
  20. 2

    Python Code Example

    i updated the github gist to display accountUpdates gist.github.com/audubon/b14eeda1c2cad704b333
Back
Top