Insider 3000 - Forums
Insider 3000 - Forums
Home | Profile | Active Topics | Members | Search | FAQ
 All Forums
 Community
 Scambio Indicatori, Trading System ecc..
 Esempio per la finestra Trova

Note: You must be registered in order to post a reply.

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert Email Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

   
   

T O P I C    R E V I E W
SupportoTecnico Posted - 18 April 2007 : 21:10:55
Questo piccolo esempio puņ essere usato con la finestra Trova per evidenziare una fase "UP" di un trend:


function Main()
dim dVel as Numeric
dim dVel1 as Numeric
dim dAcc as Numeric
dim dAcc1 as Numeric
dim dTrend as Numeric
dim dTrend1 as Numeric

dVel = Velocita(50)
dVel1 = value(Velocita(50), - 1)
dAcc = Accelerazione(50, 20)
dAcc1 = value(Accelerazione(50, 20), - 1)
dTrend = dVel - dAcc
dTrend = dVel1 - dAcc1

Return ((dVel > 0) and (dAcc > 0) and (dVel > dAcc) and (dTrend > dTrend1) and (dVel > dVel1))

endfunction



Per utilizzarlo dovete anche creare 2 indicatori (Velocita e Accelerazione) nella finestra di "Gestione Indicatori Utente" in questo modo:

[Indicatore "Velocita"]

Property Periodo() as Numeric
Default (0)
endproperty

Function Main()
Return Pic(Periodo)
Endfunction


[Indicatore "Accelerazione"]

Property PeriodoPIC() as Numeric
Default (0)
endproperty

Property PeriodoMA() as Numeric
Default (0)
endproperty

Function Main()
Return Pic(PeriodoPIC) - Moveav(Pic(PeriodoPIC), PeriodoMA)
Endfunction


Insider 3000 - Forums © Copyright 2003-2016 Tradersoft s.r.l. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07