Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Study Plot Su Strategy //
- // Inizio Come plottare: Equity / Contratti / Prezzo Medio / Market Position / Open Equity / Current Shares Su Un Indicatore Basato Su Una Strategia //
- // Creare Un' indicatore
- // Programe Assumes Only One Trade Can Close On The Bar
- // Le Keyword Usate Per Un'indicatore Sono Diverse Da Quelle Usate Per Lo Strategy
- // Link youtube: https://www.youtube.com/watch?v=0xXsC6DaGFA
- // Queste sono alcune keywords per lo study:
- {I_Closedequity
- I_Currentcontracts
- I_Avgentryprice
- I_Marketposition
- I_Openequity
- I_Currentshares}
- Vars: ClosedNetProf(0),
- LastTradP(0),
- NumWins(0),
- TotWinsNP(0),
- AvgWin(0),
- MaxWin(0);
- ClosedNetProf = I_Closedequity;
- If ClosedNetProf > ClosedNetProf[1] Then
- Begin
- LastTradP = ClosedNetProf - ClosedNetProf[1];
- Print(D, T, "LastTradP", LastTradP);
- NumWins = NumWins + 1;
- TotWinsNP = TotWinsNP + LastTradP;
- AvgWin = TotWinsNP / NumWins;
- MaxWin = Maxlist(MaxWin, LastTradP);
- End;
- Plot1(TotWinsNP, "TotWinsNP", Red);
- Plot2(AvgWin, "AvgWin", Blue);
- Plot3(MaxWin, "MaxWin", Yellow);
- // Se nei numero di trades che prendo come calcolo non ci sono vittorie allora non potrò dividere per per 0
- If NumWins - NumWins[50] > 0 Then Plot4((TotWinsNP - TotWinsNP[50]) / (NumWins - NumWins[50]), "AvgWin50BarsAgo", Magenta);
- // Fine Come plottare: Equity / Contratti / Prezzo Medio / Market Position / Open Equity / Current Shares Su Un Indicatore Basato Su Una Strategia //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement