Test – La struttura dei trading systems Copy
Exam Summary
0 of 4 Questions completed
Questions:
Information
You have already completed the exam before. Hence you can not start it again.
Exam is loading…
You must sign in or sign up to start the exam.
You must first complete the following:
Results
Results
0 of 4 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- Current
- Review
- Answered
- Correct
- Incorrect
-
Question 1 of 4
1. Question
Quale parte di un trading system identifica questa porzione di codice?
UpperChannel = HighestFC( Price, Length );
CorrectIncorrect -
Question 2 of 4
2. Question
Considerato il seguente script, e un timeframe a 5 minuti, in quali orari è permesso alla strategia piazzare ordini di ingresso?
input: BeginTime(1500), EndTime(2000), FlatTime(0800);
input: MySize(1), StopLoss(2000);
if Time>BeginTime and Time<EndTime then buy("LE") MySize contracts next bar HighS(0) stop;;
if marketposition=1 and Time>=FlatTime and Time<BeginTime then sell("LX") next bar market;
setstopcontract;
setstoploss(stoploss);CorrectIncorrect -
Question 3 of 4
3. Question
Volendo utilizzare un indicatore come le medie mobili per entrare a mercato, nel codice seguente individua il valore minimo da inserire all’interno delle proprietà della strategia alla voce ‘Max number of bars study will reference” per poter eseguire correttamente la strategia.
// INPUTS
input: SMA1Lenght(10), SMA2Lenght(100);
// VARIABLES
var: SMA1_var(0), SMA2_var(0);
// DEFINITIONS
SMA1_var = AverageFC(Close, SMA1Lenght);
SMA2_var = AverageFC(Close, SMA2Lenght);CorrectIncorrect -
Question 4 of 4
4. Question
Trova l’errore nel codice riportato qui di seguito.
inputs: MyLenght(20), MySize(1) ;
var: UpperChannel(0), LowerChannel(0);
UpperChannel = HighestFC(high, MyLenght);
LowerChannel = LowestFC(low, Mylenght);
if EntriesToday(d)=0 then begin
buy("LE") MySize contracts next bar UpperChannel market;
sellshort("SE") MySize contracts next bar LowerChannel market;
end;CorrectIncorrect