Compare commits

...

3 Commits

Author SHA1 Message Date
Pietro Giacobazzi b0012bf2fd PaPP v2 indicatore: descrizione a parole (percentile storico) per Cluster/Velocita'/Accelerazione/Volatilita'
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-06-17 06:56:47 +00:00
Pietro Giacobazzi a1023b573e PaPP v2 indicatore: Cluster contestualizzato con percentile storico (stretto/normale/largo) + valore tipico
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-06-17 06:53:56 +00:00
Pietro Giacobazzi cf3525f7af PaPP v2 indicatore: pannello con Velocita'/Accelerazione/Volatilita' = mediana delle 7 scale (dalle nostre MA, no ATR MT5)
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-06-17 06:51:00 +00:00
+141 -5
View File
@@ -15,6 +15,9 @@ input bool Smooth = true; // interpola tra i valori D1 -> linea morbida
input bool ShowMA = true; // mostra anche le 7 MA (oltre alla mediana)
#define ANCHOR_TF PERIOD_D1 // calcolo ancorato a D1: linea identica su ogni TF
#define KSLOPE 5 // barre D1 per velocita'/accelerazione
#define NVOL 14 // barre D1 per la volatilita'
#define CLWIN 252 // finestra D1 (~1 anno) per il percentile del cluster
double Buff_Median[];
double B0[],B1[],B2[],B3[],B4[],B5[],B6[];
@@ -23,6 +26,7 @@ int gDays[7] = {365,182,121,30,14,7,3};
color gCol[7] = {clrDodgerBlue,clrDeepSkyBlue,clrTurquoise,clrLimeGreen,clrOrange,clrTomato,clrRed};
int hMA[7];
int bars[7];
struct PBuf { double v[]; }; // buffer dinamico per copiare una MA
string _pfx = "PM_"; // oggetti pannello
string _pfx2 = "PME_"; // etichette a fine linea
@@ -154,6 +158,126 @@ double MedianAtD1(int d1shift)
return Median(vals,cnt);
}
//+------------------------------------------------------------------+
// valore valido = positivo e finito (esclude EMPTY_VALUE di warmup)
bool IsVal(double v) { return (v>0.0 && v<1.0e12); }
//+------------------------------------------------------------------+
// mediana dei primi c valori di src
double MedArr(double &src[],int c)
{
if(c<=0) return 0;
double a[]; ArrayResize(a,c);
for(int j=0;j<c;j++) a[j]=src[j];
ArraySort(a);
if((c&1)==1) return a[c/2];
return 0.5*(a[c/2-1]+a[c/2]);
}
//+------------------------------------------------------------------+
// Metriche a una specifica barra D1 (j), calcolate sui buffer gia' copiati mb[7]
double ClusterAtJ(PBuf &mb[],int j)
{
double v[7]; int c=0;
for(int m=0;m<7;m++){ double x=mb[m].v[j]; if(IsVal(x)) v[c++]=x; }
if(c<2) return 0;
double md=MedArr(v,c); if(md<=0) return 0;
double ds=0; for(int m=0;m<c;m++) ds+=MathAbs(v[m]-md)/md*100.0;
return ds/c;
}
double VelAtJ(PBuf &mb[],int j,int K)
{
double v[7]; int c=0;
for(int m=0;m<7;m++){ double a=mb[m].v[j], b=mb[m].v[j+K]; if(IsVal(a)&&IsVal(b)) v[c++]=(a-b)/b*100.0; }
return MedArr(v,c);
}
double AccAtJ(PBuf &mb[],int j,int K)
{
double v[7]; int c=0;
for(int m=0;m<7;m++){ double a=mb[m].v[j], b=mb[m].v[j+K], d=mb[m].v[j+2*K];
if(IsVal(a)&&IsVal(b)&&IsVal(d)) v[c++]=(a-2.0*b+d)/d*100.0; }
return MedArr(v,c);
}
double VolAtJ(PBuf &mb[],int j,int N)
{
double v[7]; int c=0;
for(int m=0;m<7;m++)
{
double r[]; int rc=0; ArrayResize(r,N);
for(int t=j;t<j+N;t++){ double a=mb[m].v[t], b=mb[m].v[t+1]; if(IsVal(a)&&IsVal(b)) r[rc++]=(a-b)/b*100.0; }
if(rc>=2)
{
double mn=0; for(int q=0;q<rc;q++) mn+=r[q]; mn/=rc;
double s=0; for(int q=0;q<rc;q++){ double dd=r[q]-mn; s+=dd*dd; }
v[c++]=MathSqrt(s/(rc-1));
}
}
return MedArr(v,c);
}
//+------------------------------------------------------------------+
// percentile (0..1) di cur fra i primi cc valori di arr
double PctlOf(double &arr[],int cc,double cur)
{
if(cc<=0) return 0.5;
int b=0; for(int k=0;k<cc;k++) if(arr[k]<=cur) b++;
return (double)b/cc;
}
//+------------------------------------------------------------------+
// Valori correnti + percentile storico (win giorni D1) di cluster/velocita'/accel/volatilita'
// per i segnali con segno (vel/acc) il percentile e' calcolato sul VALORE ASSOLUTO (forza)
void AllMetrics(int win,
double &cluCur,double &cluPct,
double &velCur,double &velPct,
double &accCur,double &accPct,
double &volCur,double &volPct)
{
cluCur=velCur=accCur=volCur=0; cluPct=volPct=0.5; velPct=accPct=0;
int ext = MathMax(2*KSLOPE,NVOL+1);
int need = win+ext+2;
PBuf mb[7];
for(int m=0;m<7;m++)
{
ArraySetAsSeries(mb[m].v,true);
if(CopyBuffer(hMA[m],0,0,need,mb[m].v)!=need) return;
}
double cA[],vA[],aA[],oA[]; int cc=0,vc=0,ac=0,oc=0;
ArrayResize(cA,win); ArrayResize(vA,win); ArrayResize(aA,win); ArrayResize(oA,win);
for(int j=1;j<=win;j++)
{
double cv=ClusterAtJ(mb,j); if(cv>0) cA[cc++]=cv;
vA[vc++]=MathAbs(VelAtJ(mb,j,KSLOPE));
aA[ac++]=MathAbs(AccAtJ(mb,j,KSLOPE));
double ov=VolAtJ(mb,j,NVOL); if(ov>0) oA[oc++]=ov;
}
cluCur=ClusterAtJ(mb,1); velCur=VelAtJ(mb,1,KSLOPE);
accCur=AccAtJ(mb,1,KSLOPE); volCur=VolAtJ(mb,1,NVOL);
cluPct=PctlOf(cA,cc,cluCur);
volPct=PctlOf(oA,oc,volCur);
velPct=PctlOf(vA,vc,MathAbs(velCur)); // forza (su |valore|)
accPct=PctlOf(aA,ac,MathAbs(accCur));
}
//+------------------------------------------------------------------+
// descrizione a parole per una grandezza di sola ampiezza (cluster, volatilita')
string MagWord(double pct,string w0,string w1,string w2,string w3,string w4)
{
if(pct<0.20) return w0;
if(pct<0.40) return w1;
if(pct<0.60) return w2;
if(pct<0.80) return w3;
return w4;
}
//+------------------------------------------------------------------+
// descrizione a parole per un segnale con segno (velocita', accelerazione)
string DirWord(double val,double absPct,string up,string down,string flat)
{
if(absPct<0.15) return flat;
string forza = (absPct<0.40)?"lieve":((absPct<0.70)?"moderata":"forte");
return (val>0?up:down)+" "+forza;
}
//+------------------------------------------------------------------+
// interpolazione lineare con fallback se uno dei valori manca
double Interp(double vStart,double vEnd,double frac)
@@ -298,11 +422,23 @@ void DrawInfo()
Lbl("M","Median: "+DoubleToString(median,_Digits),x,y,FontSize,clrGold,false); y+=lh;
Lbl("D","Dist: "+distS,x,y,FontSize,distC,true); y+=lh+2;
//--- Dispersione MA e bande (info)
double ds=0; int dc=0;
for(int m=0;m<7;m++) { double v=GetMA(m,1); if(v>0) { ds+=MathAbs(v-median)/median*100; dc++; } }
double vol = (dc>0)?ds/dc:0;
Lbl("V","Cluster +/-"+DoubleToString(vol,3)+"%",x,y,FontSize,clrGray,false); y+=lh+2;
//--- Cluster/Velocita'/Accelerazione/Volatilita' con percentile storico + descrizione a parole
double cluCur,cluPct,velCur,velPct,accCur,accPct,volCur,volPct;
AllMetrics(CLWIN,cluCur,cluPct,velCur,velPct,accCur,accPct,volCur,volPct);
string cluTxt = MagWord(cluPct,"molto stretto","stretto","normale","largo","molto largo");
color cluC = (cluPct<0.40)?clrLimeGreen:((cluPct>0.60)?clrTomato:clrSilver);
Lbl("V",StringFormat("Cluster %.3f%% - %s (P%.0f)",cluCur,cluTxt,cluPct*100),x,y,FontSize,cluC,false); y+=lh;
string velTxt = DirWord(velCur,velPct,"in salita","in discesa","quasi piatta");
Lbl("VEL",StringFormat("Velocita' %+.3f%% - %s",velCur,velTxt),x,y,FontSize,(velCur>0)?clrLimeGreen:clrTomato,false); y+=lh;
string accTxt = DirWord(accCur,accPct,"in accelerazione","in decelerazione","stabile");
Lbl("ACC",StringFormat("Accel %+.4f%% - %s",accCur,accTxt),x,y,FontSize,(accCur>0)?clrLimeGreen:clrTomato,false); y+=lh;
string volTxt = MagWord(volPct,"molto bassa","bassa","normale","alta","molto alta");
color volC = (volPct<0.40)?clrLimeGreen:((volPct>0.60)?clrTomato:clrAqua);
Lbl("VOL",StringFormat("Volatilita' %.4f%% - %s (P%.0f)",volCur,volTxt,volPct*100),x,y,FontSize,volC,false); y+=lh+2;
//--- Valori delle 7 MA (giorni : valore) con colore = linea
for(int m=0;m<7;m++)