Jump to content

Kodiak

Community Member
  • Posts

    573
  • Joined

  • Last visited

  • Days Won

    31

Posts posted by Kodiak

  1. 18 minutes ago, dmedin said:

    So much for financial capitalism generating 'wealth' ... not even paper money, which at the very least people could wipe their a$$holes with.   

    Give it a week or two and DOW are back where it was when Trump got elected?

     

    • Great! 1
  2. 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😉

     

     

    DAX 3.png

    • Like 1
  3. 2 hours ago, trade247 said:

    Step 1 - buy daily puts at the start of the session 1% out the money (basically above the line on the platform)

    step 2 - profit

    *nb: vast over valuation of stocks required and exponential growth on nCoV deadly virus V useful

    discuss....

    Did you close it with profit

    or waiting for more profit?

    Exit is imoprtant trading options they move very fast

     

  4. 22 minutes ago, hlaci said:

    The deal ticket: US500 3400 CALL (MAR 20)

    Size: 1    Currency: GBP    Sell price: 0.38  Buy price: 0.98

    Margin required:  152.12/0.98

    I have 107 GBP on my account. When I press the BUY, the system warns that I do not have enough funds on my account, I have to deposit more. WHY? I costs 0.98 GBP only to BUY that option.

    Could anyone help me?

     

    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 

  5. //-------------------------------------------------------------------------
    // 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
     

  6. //-------------------------------------------------------------------------
    // 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