Search results

  1. C

    ANVIL API (Assent) Developer Thread

    Never used it ... sorry
  2. C

    $500 Margin - FCM's?

    Transact Futures, Global Futures, Velocity, AGN Futures
  3. C

    Trader P/L 2008

    Bad start for me this year. Today: +48 Days Trading: 14 Net Pnl: (2,908.12) Per Day: (207.72)
  4. C

    Beware, Lie, Deny and Conspire to hide the Platform BUGS? review Transact Futures!

    No forced upgrade. Still the same version.
  5. C

    How to go from trading education to trading?

    thanks for the feedback. It does make sense ...
  6. C

    ANVIL API (Assent) Developer Thread

    I seen many post about having a timer on ANVIL. Here is a simple way of having a timer in Anvil without having to worry about multi-threading. You need to add an observable to <I>B_GetAdminObservable()</I>. On the <i>Process()</i> handle monitor the M_HEARTBEAT message. Check...
  7. C

    How to go from trading education to trading?

    I have to concur with tom123 100%…..I just made the transition to full-time trading. While studying and paper trading I was making 10-15pts on ES-Mini. Now with real money I am down $3k. I’m in the process of trying to figure out what is happening. It is all on psychology. My stops...
  8. C

    Beware, Lie, Deny and Conspire to hide the Platform BUGS? review Transact Futures!

    I try to find "transact futures" an I found none. searched for "transact", but the name is too generic. I am wondering if there are any cases against them already ...
  9. C

    Beware, Lie, Deny and Conspire to hide the Platform BUGS? review Transact Futures!

    I see. The Pnl on ES should actually be about $100+, not $-25 ... I have nto seen this on my version but thanks for the heads up. I also asked their support group how can I get the Pnl based on the inside quote and not ont he last trade. They told me it was based on the pnl. I wrote...
  10. C

    TransAct will launch a new software, soon?

    Waht bugs are present in transactAT ? I use it and I have not encountered any ..
  11. C

    Anyone read Blood and Oil?

    This is not at the same level, when I saw this I though it was about some blood banks are giving away Gas Cards is you donate blood... That still "Blood for Oil", or "Blood for Gasoline" ...
  12. C

    Prepaid Gas Cards ? Anyone....

    Iwas thinkng more about consuemr based online purchase. You go into site. Teh price is detemined in realtime. You buy 2000 gallons fo diesel for $5/gallon (I am sure trucking industry will use it). The card also has an expiration date. The price is detemined in real-time based on...
  13. C

    Prepaid Gas Cards ? Anyone....

    I heard Chrysler has something similar ... I was thinking more of somehow capturing a spot price when you sell the card online. Lets say 500 gallons of regular gas at $4. the price offered is somehow tied to the current gas/oil futures. You immediately hedge against it. Then hedge...
  14. C

    Prepaid Gas Cards ? Anyone....

    Has anyone thought about a consumer prepaid gas cards ... We have pre-paid cards for many things ... Why not pre-paid gas cards ?
  15. C

    ANVIL API (Assent) Developer Thread

    I never worked with openquant but I am sure one can be built if there is none.
  16. C

    ANVIL API (Assent) Developer Thread

    I can see the MFC timer coming from a diff thread. But the dlg msg pump is the same as the ANVIL main GUI thread. Debug the ::GetCurrentThreadID() on the OnOK() call. See if it is the same. Im my codebase is the same thread.
  17. C

    ANVIL API (Assent) Developer Thread

    Are you creating the dialog from your own worker thread ? or from the anvil DoMenuCmd api ?
  18. C

    ANVIL API (Assent) Developer Thread

    There is lots of discovering you need to do in simulation mode. Most impotantly msgs received when an order is paced, positions changed, etc ... Here is some sample code you can use to debug all messages. You can use this in the acct and stock Process() call. I tried to comment parts...
  19. C

    ANVIL API (Assent) Developer Thread

    Your DoAnvilExtensionCommand() gets called from ANVILs main thread so you should not have a problem there. You can create dlg as follow: CDlg m_pCDlg = new CDlg(); m_pDlg->Create(IDD_DLG, ::AfxGetMainWnd()); m_pDlg->ShowWindow(SW_SHOW); You need to monitor stcokmovement or Process()...
Back
Top