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:
640 x 480
800 x 600
1024 x 768
1280 x 1024
UserName:
Password:
Format Mode:
Basic
Help
Prompt
Format:
Font
Andale Mono
Arial
Arial Black
Book Antiqua
Century Gothic
Comic Sans MS
Courier New
Georgia
Impact
Lucida Console
Script MT Bold
Stencil
Tahoma
Times New Roman
Trebuchet MS
Verdana
Size
1
2
3
4
5
6
Color
Black
Red
Yellow
Pink
Green
Orange
Purple
Blue
Beige
Brown
Teal
Navy
Maroon
LimeGreen
Message:
* HTML is OFF
*
Forum Code
is ON
Smilies
[quote][i]Originally posted by SupportoTecnico[/i] [br]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 [/quote]
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.