Word abonnee en neem Beursduivel Premium
Rode planeet als pijlen grid met hoorntjes Beursduivel

VendexKBB Terug naar discussie overzicht

Leviatan

40 Posts
Pagina: 1 2 »» | Laatste | Omlaag ↓
  1. [verwijderd] 21 februari 2009 11:21
    Pimping and Pumping up to 51%

    -------------------------------> after

    indicator1 = AverageTrueRange[14](close)
    c1 = (indicator1 >1.3)
    c2 = (indicator1 <1.1)

    if intradayBarindex = 1 then
    up = highest[2](high)
    down=lowest[2](low)
    endif

    if intradaybarindex >0 and Time < 160001 and C1 then
    if close > up then
    buy 50%capital at market
    endif
    endif

    if intradaybarindex >1 and Time < 160001 and C2 then
    if close < down then
    sellshort 50%capital at market
    endif
    endif

    IF LONGONMARKET THEN
    sell at market todayonclose
    endif

    IF shortONMARKET THEN
    sell at market todayonclose
    endif

  2. [verwijderd] 21 februari 2009 16:42
    Er zit helaas een vervelende fout in BackTestProgramma van ChartNet. Iedere trade wordt aan het einde van dag gesloten. Jammer genoeg is ChartNet soms niet te stoppen c.q. te programmeren aan het einde van de dag zodat er trades doorlopen over meerdere dagen hetgeen niet te bedoeling is.

    Versie OBS met 2 bars Reversal:

    ---------------------------> code begint na deze regel
    if intradayBarindex = 1 then
    up = highest[1](high)
    down=lowest[1](low)
    endif

    StopLong = 0

    if Close < Down then
    StopLong =StopLong +1
    If Close{1} < down then
    StopLong =StopLong+1
    endif
    endif

    StopShort=0

    if Close > Up then
    StopShort =StopShort +1
    If Close{1} > Up then
    StopShort =StopShort+1
    endif
    endif

    if intradaybarindex >0 and Time < 160001 then
    if close > up then
    buy 50%capital at market
    endif
    endif

    if intradaybarindex >1 and Time < 160001 then
    if close < down then
    sellshort 50%capital at market
    endif
    endif

    IF LONGONMARKET and StopLong = 2 THEN
    sell at market
    endif

    IF shortONMARKET and StopShort = 2 THEN
    sell at market todayonclose
    endif

    IF LONGONMARKET THEN
    sell at market todayonclose
    endif

    IF shortONMARKET THEN
    sell at market todayonclose
    endif

    -------------------------------> einde code

    Tom

  3. [verwijderd] 21 februari 2009 17:11
    Dan maar zo: 2 BarsReversal einde van de dag sluiting.

    if intradayBarindex = 1 then
    up = highest[1](high)
    down=lowest[1](low)
    endif

    StopLong = 0

    if Close < Down then
    StopLong =StopLong +1
    If Close{1} < down then
    StopLong =StopLong+1
    endif
    endif

    StopShort=0

    if Close > Up then
    StopShort =StopShort +1
    If Close{1} > Up then
    StopShort =StopShort+1
    endif
    endif

    if intradaybarindex >0 and Time < 160001 then
    if close > up then
    buy 50%capital at market
    endif
    endif

    if intradaybarindex >1 and Time < 160001 then
    if close < down then
    sellshort 50%capital at market
    endif
    endif

    IF LONGONMARKET and StopLong = 2 THEN
    sell at market
    endif

    IF shortONMARKET and StopShort = 2 THEN
    buy at market todayonclose
    endif

    IF LONGONMARKET THEN
    sell at market todayonclose
    endif

    IF shortONMARKET THEN
    buy at market todayonclose
    endif

  4. [verwijderd] 21 februari 2009 17:51
    Final Cut Pimping OBS to PingPing
    Indien een Openings positie wordt gesloten tijdens de dag worden er geen trades meer gedaan. Meestal komt dit voor in een zijwaartse markt.First hit is Sit Down.

    ------------------------------------>

    if intradayBarindex = 1 then
    up = highest[1](high)
    down=lowest[1](low)
    Marker =0
    endif

    ParSarLow= lowest[5](low)
    StopLong = 0

    if Close < Down then
    StopLong =StopLong +1
    If Close{1} < down then
    StopLong =StopLong+1
    endif
    endif

    StopShort=0

    if Close > Up then
    StopShort =StopShort +1
    If Close{1} > Up then
    StopShort =StopShort+1
    endif
    endif

    if intradaybarindex >0 and Time < 160001 and Marker < 1 then
    if close > up then
    buy 50%capital at market
    endif
    endif

    if intradaybarindex >1 and Time < 160001 and Marker < 1 then
    if close < down then
    sellshort 50%capital at market
    endif
    endif

    IF LONGONMARKET and Close < Up THEN
    sell at market
    Marker=1
    endif

    IF LONGONMARKET and Close < ParSarLow THEN
    sell at market
    Marker =1
    endif

    IF LONGONMARKET and StopLong = 2 THEN
    sell at market
    Marker =1
    endif

    rem ------------------------------------------------------------------------------------->

    IF shortONMARKET and Close > Down THEN
    sell at market
    Marker =1
    endif

    IF shortONMARKET and StopShort = 2 THEN
    buy at market todayonclose
    Marker =1
    endif

    IF LONGONMARKET THEN
    sell at market todayonclose
    Marker =1
    endif

    IF shortONMARKET THEN
    buy at market todayonclose
    Marker =1
    endif

  5. [verwijderd] 22 februari 2009 09:15
    Ok Willem wel even nalopen en opnieuw berekenen nooit zo maar iets aannemen.
    Heb wel een melding gedaan bij ChartNet over die verschillen als je de prof versie gebruikt krijg je andere resultaten dan met de Lite versie. Ook als je datums gelijk houd.

  6. [verwijderd] 22 februari 2009 14:57
    Willem,

    Zitten nogal wat fouten in de codering die ik heb doorgegeven bij deze de gecorrigeerde. Zijn niet echt fouten maar coderingen stonden op de verkeerde plaats. Zag grote verschillen tussen de ChartNet versie en de MetaStock versie. Met deze versie loopt MetaStock gelijk met de ChartNet variant dus kunnen we aannemen dat het nu goed is.

    if intradayBarindex = 1 then
    up = highest[1](high)
    down=lowest[1](low)
    Marker =0
    endif

    StopLong = 0

    if Close < Down then
    StopLong =StopLong +1
    If Close{1} < down then
    StopLong =StopLong+1
    endif
    endif

    StopShort=0

    if Close > Up then
    StopShort =StopShort +1
    If Close{1} > Up then
    StopShort =StopShort+1
    endif
    endif

    if intradaybarindex >0 and Time < 160001 and Marker < 1 then
    if close > up then
    buy 100%capital at market
    sell at market todayonclose

    IF LONGONMARKET and Close < Down THEN
    sell at market
    Marker=1
    endif

    IF LONGONMARKET and StopLong = 2 THEN
    sell at market
    Marker =1
    endif

    IF LONGONMARKET THEN
    sell at market todayonclose
    Marker =1
    endif

    endif
    endif

    if intradaybarindex >1 and Time < 160001 and Marker < 1 then
    if close < down then
    sellshort 100%capital at market
    buy at market todayonclose
    Marker = 1
    IF ShortONMARKET and High > Up then
    buy at market
    Marker =1
    endif

    IF ShortONMARKET and Close > Up THEN
    buy at market
    Marker =1
    endif

    IF ShortONMARKET and StopShort = 2 THEN
    buy at market todayonclose
    Marker =1
    endif


    IF ShortONMARKET THEN
    buy at market todayonclose
    Marker =1
    endif
    endif
    endif

  7. [verwijderd] 22 februari 2009 16:01
    Zou verder de posities buiten de openingsrange in de gaten houden erboven eronder is gewoon sluiten.
    Verder heb ik een methode ingebouwd dat als een openingstrade is gesloten er geen trades meer plaatsvinden je zou deze kunnen uitschakelen.
    Bouw later wel de stukjes er aan de groen en de rode mutsen.

    Week 08: Grafiek
  8. [verwijderd] 23 februari 2009 17:26
    Heb die OBS in 2 schermen gesplitst tot het moment dat ChartNet met een andere oplossing komt. Scherm Long en Scherm Short. Dit is scherm Short

    C1=Time < 160001
    C2 =Close< WilderAverage[58](close)

    if intradayBarindex =1 then
    up = highest[2](high)
    down=lowest[2](low)
    endif

    StopShort=0

    if Close > Up then
    StopShort =StopShort +1
    If Close[1] > Up then
    StopShort =StopShort+1
    endif
    endif

    if intradaybarindex >1 and C1 and C2 then
    if close < down then
    sellshort 100%capital at market
    buy at market todayonclose
    endif
    endif

    IF ShortONMARKET and StopShort = 2 then
    buy at market
    endif

    IF ShortONMARKET and Close > Up THEN
    buy at market
    endif

  9. [verwijderd] 23 februari 2009 17:33
    Dit is scherm 2 Long gedeelte 2 schermen openen en veilig stellen als Template.
    Weet niet of je kan zeggen dat 19% + 38%= 57%
    is

    C1=Time < 160001
    C2 =Close> WilderAverage[58](close)

    if intradayBarindex =1 then
    up = highest[2](high)
    down=lowest[2](low)
    endif

    StopLong = 0

    if Close < Down then
    StopLong =StopLong +1
    If Close[1] < down then
    StopLong =StopLong+1
    endif
    endif

    if intradaybarindex >0 and C1 and C2 then
    if close > up then
    buy 100%capital at market
    sell at market todayonclose
    endif
    endif

    IF LONGONMARKET and StopLong = 2 THEN
    sell at market
    endif

    IF LONGONMARKET and Close < Down THEN
    sell at market
    endif

40 Posts
Pagina: 1 2 »» | Laatste |Omhoog ↑

Neem deel aan de discussie

Word nu gratis lid van Beursduivel.be

Al abonnee? Log in

Direct naar Forum

Zoek alfabetisch op forum

  1. A
  2. B
  3. C
  4. D
  5. E
  6. F
  7. G
  8. H
  9. I
  10. J
  11. K
  12. L
  13. M
  14. N
  15. O
  16. P
  17. Q
  18. R
  19. S
  20. T
  21. U
  22. V
  23. W
  24. X
  25. Y
  26. Z
Forum # Topics # Posts
Aalberts 466 7.003
AB InBev 2 5.486
Abionyx Pharma 2 29
Ablynx 43 13.356
ABN AMRO 1.582 51.273
ABO-Group 1 22
Acacia Pharma 9 24.692
Accell Group 151 4.132
Accentis 2 264
Accsys Technologies 23 10.555
ACCSYS TECHNOLOGIES PLC 218 11.686
Ackermans & van Haaren 1 188
ADMA Biologics 1 34
Adomos 1 126
AdUX 2 457
Adyen 14 17.657
Aedifica 3 902
Aegon 3.258 322.677
AFC Ajax 538 7.087
Affimed NV 2 6.288
ageas 5.844 109.887
Agfa-Gevaert 14 2.048
Ahold 3.538 74.302
Air France - KLM 1.025 35.008
AIRBUS 1 11
Airspray 511 1.258
Akka Technologies 1 18
AkzoNobel 467 13.036
Alfen 16 24.370
Allfunds Group 4 1.469
Almunda Professionals (vh Novisource) 651 4.251
Alpha Pro Tech 1 17
Alphabet Inc. 1 405
Altice 106 51.198
Alumexx ((Voorheen Phelix (voorheen Inverko)) 8.486 114.819
AM 228 684
Amarin Corporation 1 133
Amerikaanse aandelen 3.836 242.820
AMG 971 133.147
AMS 3 73
Amsterdam Commodities 305 6.686
AMT Holding 199 7.047
Anavex Life Sciences Corp 2 485
Antonov 22.632 153.605
Aperam 92 14.960
Apollo Alternative Assets 1 17
Apple 5 381
Arcadis 252 8.733
Arcelor Mittal 2.033 320.618
Archos 1 1
Arcona Property Fund 1 286
arGEN-X 17 10.288
Aroundtown SA 1 219
Arrowhead Research 5 9.723
Ascencio 1 26
ASIT biotech 2 697
ASMI 4.108 39.087
ASML 1.766 106.207
ASR Nederland 21 4.452
ATAI Life Sciences 1 7
Atenor Group 1 484
Athlon Group 121 176
Atrium European Real Estate 2 199
Auplata 1 55
Avantium 32 13.639
Axsome Therapeutics 1 177
Azelis Group 1 64
Azerion 7 3.392

Macro & Bedrijfsagenda

  1. 11 februari

    1. Kering Q4-cijfers (Fra)
    2. Wereldhave Q4-cijfers
    3. Barco Q4-cijfers
    4. Wereldhave Belgium Q4-cijfers
    5. BP Q4-cijfers (VK)
    6. Ondernemersvertrouwen mkb januari (VS)
    7. Coca-Cola Q4-cijfers (VS)
    8. DuPont Q4-cijfers (VS)
    9. Deutsche Boerse Q4-cijfers (Dld)
    10. Montea Q4-cijfers
de volitaliteit verwacht indicator betekend: Market moving event/hoge(re) volatiliteit verwacht