Search results

  1. O

    getting order state and modifying order in multicharts.net (C#)

    I've never used multicharts but looks like you have Contracts.Default and then longOrder.Send(40)
  2. O

    Paying off mortgage

    every scenario will be different.. create a detailed analysis https://www.khanacademy.org/economics-finance-domain/core-finance/housing/renting-v-buying/v/renting-vs-buying-detailed-analysis
  3. O

    AMP Margin for Positions opened in night times

    holy moly..what a video. thanks
  4. O

    What kind of approach can make you INSANELY rich?

    Haha.. true.. better quick start trading them for something else..
  5. O

    What kind of approach can make you INSANELY rich?

    it was from 'The Richest Man in Babylon'. The first lesson was to save 10%.. not spend everything.. and I think the compounding came later at the Make Thy Gold Multiply
  6. O

    What kind of approach can make you INSANELY rich?

    came across this quote today.. "If thou select one of thy baskets and put into it each morning ten eggs and take out from it each evening nine eggs, what will eventually happen?"
  7. O

    Paying off mortgage

    i found these interesting.. http://www.imf.org/external/research/housing/ https://smartasset.com/mortgage/price-to-rent-ratio-in-us-cities
  8. O

    Bot WEED.to (TSX) @ 10.97 Target area is $16.00 CDN

    that's hilarious! i love canadians... they are awesome
  9. O

    Chart Porn. post your chart porn.

  10. O

    You have to die before becoming a successful trader

    how many times does one have to die?
  11. O

    Creating logic in Python for auto-generating a tuple of futures spreads to query

    sounds interesting.. imho if I had to choose to do something real-time like that, given what you've mentioned.. I might try to break up the task of updating the real-time data into threads. Then another to be trying to find a trade to make. I'd rather have the data in memory than at the hard...
  12. O

    Creating logic in Python for auto-generating a tuple of futures spreads to query

    guess you could place the contracts in a csv that you could setup in excel but read in and parse.. even using columns to specify months.. and use OS time to decide which months to pick out and then create the spreads and place them in containers.. by category.. then once you have your containers...
  13. O

    What kind of approach can make you INSANELY rich?

    think I know what you meant now. cheers
  14. O

    What kind of approach can make you INSANELY rich?

    how is a day trader not able to compound?
  15. O

    Creating logic in Python for auto-generating a tuple of futures spreads to query

    import itertools GEcontracts = ('GEH7.CME', 'GEM7.CME', 'GEU7.CME', 'GEZ7.CME', 'GEH8.CME') print(tuple(itertools.combinations(GEcontracts, 2))) ''' output is: (('GEH7.CME', 'GEM7.CME'), ('GEH7.CME', 'GEU7.CME'), ('GEH7.CME', 'GEZ7.CME'), ('GEH7.CME', 'GEH8.CME'), ('GEM7.CME', 'GEU7.CME')...
  16. O

    Creating logic in Python for auto-generating a tuple of futures spreads to query

    will any of this help? https://docs.python.org/3/library/itertools.html *didn't look too close just did a quick search
  17. O

    Creating logic in Python for auto-generating a tuple of futures spreads to query

    my first thought is that it sounds like a waste going thru the loop at runtime. is there a reason why you don't want to just define the spreads?
  18. O

    We have topped!

    are you still around?
  19. O

    Can I be confident with this strategy?

    hi SimpleMeLike.. I'm sure everyone handles it differently. But, what I do is .. let's say I based it off of 10 yrs (I like to at least go back to 2007-8 to include that environment). And you have a max drawdown from the tests. You can add some to that to be conservative. Now you have some idea...
Back
Top