Jump to content

Kodiak

Community Member
  • Posts

    573
  • Joined

  • Last visited

  • Days Won

    31

Everything posted by Kodiak

  1. "Former ECB President Mario Draghi, whom I met with regularly during that period to discuss this very issue, understood and fretted about the fact that the Germans would be very much against the move to QE. He nonetheless chose to protect the entire euro zone economy from deep recession and possible deflation, incurring the wrath of ECB hawks and Germans in the process." https://www.bloomberg.com/opinion/articles/2020-03-11/coronavirus-europe-needs-a-robust-response-from-the-ecb " hint of a “too little, too late” response that significantly raises the odds of a soaring euro and recession." Draghi please come back with the helicopter😷
  2. Try search.. (on live account)
  3. DAX Lets see if we can close the gap😉 11 400 ish?
  4. Give it a week or two and DOW are back where it was when Trump got elected?
  5. Or point the cursor on the level in the order interface
  6. Try this But you cant change steps its only 1 (if price rise 1 stop rise 1)
  7. DAX Daily Or else its the start of the next leg down.. Probably target December 2018 low?
  8. DAX Daily This market needs a "hand" 😉 If we could get a reversal today and close at day high i would look a lot better
  9. Time for the girl from France to do something? Buy DAX or FDAX? Not much they can do with rates? I miss Draghis helicopter money🤑 https://www.marketwatch.com/story/lagarde-ecb-stands-ready-to-take-appropriate-steps-as-it-monitors-coronavirus-outbreak-2020-03-02
  10. I bought a small lottery ticket Dow weekend size 0.25 and then closed manually 0.15 and kept 0.1 open then 15 minutes before future reopen they (IG) closed the weekend Dow and opened a position in cash Dow Same size and no extra spread
  11. Too early to call a bottom but some higher lows needs to take out 12 000 Needs to wiggle around and shake out some weak hands (long) and some shorts to squezze out😉
  12. DAX Seems the sellers are tired, or maybe lunch? Lets see if we can get a higher swing low? or if its takes off without looking back?
  13. Did you close it with profit or waiting for more profit? Exit is imoprtant trading options they move very fast
  14. Step 1 buy Step 2 add a limit to sell at profit😉 Step 3 the "guy" on the other side make a loss😉
  15. They had something going on back in 2015, but then came mr Wall street 30K alias Trump and ditch it https://www.etf.com/sections/features-and-news/sec-rule-death-knell-geared-etfs
  16. Bought one of each On demo😁 Where is the limit order😉
  17. Should be 0.98 for buy a call and 152 to sell short a call? "Margin required: 152.12/0.98" Strange If size is 1 GBP per point
  18. a weak, weak buy maybe😉 Needs to take out 13 060
  19. Did a backtest on EURUSD Friday was a winner but had some drawdown lately so its probably time for some tweaking of the settings?
  20. //------------------------------------------------------------------------- // Main code : BO DOW3 3 min //------------------------------------------------------------------------- DEFPARAM CumulateOrders = false DEFPARAM FLATBefore = 090000 //09:00 DEFPARAM FLATAfter = 210000 //21:00 DEFPARAM PreLoadBars = 2000 ONCE nLots = 1 ONCE MaxPrice = 999999 ONCE MinPrice = 0 ONCE FirstHour = 090000 IF time = FirstHour THEN MaxPrice = highest[12](high) MinPrice = lowest[12](low) ENDIF //************************************************************************ // trailing stop function trailingstart = 9 //5 trailing will start @trailinstart points profit trailingstep = 11 //5 trailing step to move the "stoploss" // //reset the stoploss value IF NOT ONMARKET THEN newSL=0 ENDIF //manage long positions IF LONGONMARKET THEN //first move (breakeven) IF newSL=0 AND close-tradeprice(1)>=trailingstart*pipsize THEN newSL = tradeprice(1)+trailingstep*pipsize ENDIF //next moves IF newSL>0 AND close-newSL>=trailingstep*pipsize THEN newSL = newSL+trailingstep*pipsize ENDIF ENDIF //manage short positions IF SHORTONMARKET THEN //first move (breakeven) IF newSL=0 AND tradeprice(1)-close>=trailingstart*pipsize THEN newSL = tradeprice(1)-trailingstep*pipsize ENDIF //next moves IF newSL>0 AND newSL-close>=trailingstep*pipsize THEN newSL = newSL-trailingstep*pipsize ENDIF ENDIF //stop order to exit the positions IF newSL>0 THEN SELL AT newSL STOP EXITSHORT AT newSL STOP ENDIF //************************************************************************ // LONG a1 = close > MaxPrice IF a1 THEN Buy nLots CONTRACT AT MARKET MaxPrice = 999999 MinPrice = 0 ENDIF // SHORT b1 = close < MinPrice IF b1 THEN Sellshort nLots CONTRACT AT MARKET MaxPrice = 999999 MinPrice = 0 ENDIF SET STOP PLOSS 40 SET TARGET PPROFIT 93
  21. This is a DOW version i have had running on demo on 3 min But i dont like it, probably another loser in play? To be honest this breakout systems looks good in theory buy fails when trading them Markets change all the time and risk of curvefitting
  22. //------------------------------------------------------------------------- // Main code : AAAAA EU BO 5 min 24 nov skp //------------------------------------------------------------------------- DEFPARAM CumulateOrders = false DEFPARAM FLATBefore = 150000 DEFPARAM FLATAfter = 210000 DEFPARAM PreLoadBars = 2000 ONCE nLots = 1 ONCE MaxPrice = 999999 ONCE MinPrice = 0 ONCE FirstHour = 150000 // Start IF time = FirstHour THEN MaxPrice = highest[12](high) // Highest 12 bars 5 min = 60 min MinPrice = lowest[12](low) // LoWest ENDIF //************************************************************************ // trailing stop function trailingstart = 13 //5 trailing will start @trailinstart points profit trailingstep = 2 //5 trailing step to move the "stoploss" // //reset the stoploss value IF NOT ONMARKET THEN newSL=0 ENDIF //manage long positions IF LONGONMARKET THEN //first move (breakeven) IF newSL=0 AND close-tradeprice(1)>=trailingstart*pipsize THEN newSL = tradeprice(1)+trailingstep*pipsize ENDIF //next moves IF newSL>0 AND close-newSL>=trailingstep*pipsize THEN newSL = newSL+trailingstep*pipsize ENDIF ENDIF //manage short positions IF SHORTONMARKET THEN //first move (breakeven) IF newSL=0 AND tradeprice(1)-close>=trailingstart*pipsize THEN newSL = tradeprice(1)-trailingstep*pipsize ENDIF //next moves IF newSL>0 AND newSL-close>=trailingstep*pipsize THEN newSL = newSL-trailingstep*pipsize ENDIF ENDIF //stop order to exit the positions IF newSL>0 THEN SELL AT newSL STOP EXITSHORT AT newSL STOP ENDIF //************************************************************************ // LONG a1 = close > MaxPrice IF a1 THEN Buy nLots CONTRACT AT MARKET MaxPrice = 999999 MinPrice = 0 ENDIF // SHORT b1 = close < MinPrice IF b1 THEN Sellshort nLots CONTRACT AT MARKET MaxPrice = 999999 MinPrice = 0 ENDIF SET STOP PLOSS 20
×
×
  • Create New...
us