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.106
AB InBev 2 5.531
Abionyx Pharma 2 29
Ablynx 43 13.356
ABN AMRO 1.582 52.078
ABO-Group 1 23
Acacia Pharma 9 24.692
Accell Group 151 4.132
Accentis 2 267
Accsys Technologies 23 10.829
ACCSYS TECHNOLOGIES PLC 218 11.686
Ackermans & van Haaren 1 192
Adecco 1 1
ADMA Biologics 1 34
Adomos 1 126
AdUX 2 457
Adyen 14 17.804
Aedifica 3 925
Aegon 3.258 323.042
AFC Ajax 538 7.088
Affimed NV 2 6.305
ageas 5.844 109.901
Agfa-Gevaert 14 2.062
Ahold 3.538 74.349
Air France - KLM 1.025 35.265
AIRBUS 1 12
Airspray 511 1.258
Akka Technologies 1 18
AkzoNobel 467 13.049
Alfen 16 25.180
Allfunds Group 4 1.516
Almunda Professionals (vh Novisource) 651 4.251
Alpha Pro Tech 1 17
Alphabet Inc. 1 418
Altice 106 51.198
Alumexx ((Voorheen Phelix (voorheen Inverko)) 8.486 114.826
AM 228 684
Amarin Corporation 1 133
Amerikaanse aandelen 3.837 243.748
AMG 971 134.231
AMS 3 73
Amsterdam Commodities 305 6.744
AMT Holding 199 7.047
Anavex Life Sciences Corp 2 495
Antonov 22.632 153.605
Aperam 92 15.047
Apollo Alternative Assets 1 17
Apple 5 384
Arcadis 252 8.798
Arcelor Mittal 2.034 320.943
Archos 1 1
Arcona Property Fund 1 286
arGEN-X 17 10.350
Aroundtown SA 1 221
Arrowhead Research 5 9.750
Ascencio 1 28
ASIT biotech 2 697
ASMI 4.108 39.597
ASML 1.766 109.805
ASR Nederland 21 4.507
ATAI Life Sciences 1 7
Atenor Group 1 522
Athlon Group 121 176
Atrium European Real Estate 2 199
Auplata 1 55
Avantium 32 13.834
Axsome Therapeutics 1 177
Azelis Group 1 66
Azerion 7 3.447

Macro & Bedrijfsagenda

  1. 24 maart

    1. Samengestelde inkoopmanagersindex maart (Jap)
    2. Samengestelde inkoopmanagersindex maart (Fra)
    3. Samengestelde inkoopmanagersindex maart (Dld)
    4. Samengestelde inkoopmanagersindex maart (eur)
    5. Samengestelde inkoopmanagersindex maart (VK)
    6. Chicago Fed index februari (VS)
    7. Samengestelde inkoopmanagersindex maart (VS)
  2. 25 maart

    1. Ifo ondernemersvertrouwen maart (Dld)
    2. Case Shiller huizenprijzen januari (VS)
    3. Shell beleggersdag
de volitaliteit verwacht indicator betekend: Market moving event/hoge(re) volatiliteit verwacht