HI nathanvbasko, How do move the volume profile away to the right on the chart. The template has it alligned to the last candle by default. Thanks Sarjnathanvbasko wrote: Wed Nov 19, 2025 5:58 pm v2v dynamic trading system... updates:
Got optimized even more → v2v Power/Strength tool
Other tools got updated:
→ PIVOT_FIBS_plus... DST/Winter session time-adjusted)
→ CustomCandle_n_HiddenGaps... DST/Winter session time-adjusted
→ v2v_top_correlation... Optimized - iClose cache calls
Screenshot 2025-11-19 151226.png
Getting started with v2v dynamic trading system:
• Essential Steps for New Users: Carefully follow the outlined steps provided →HERE
• To learn more about the system, users are encouraged to visit →HERE
Re: v2v dynamic system
1682Just move vertical line guides manually by drag & drop action with your mouseSarj wrote: Fri Nov 28, 2025 10:31 am HI nathanvbasko, How do move the volume profile away to the right on the chart. The template has it alligned to the last candle by default. Thanks Sarj
Since Frank Sinatra sings in his own way, my charts sing... ♪ I did it, My... Way... ♬ ; )─
Re: v2v dynamic system
1683v2v dynamic trading system...
Got optimized for scalper and intraday traders ► v2v Power/Strength
Getting started with v2v dynamic trading system:
• Essential Steps for New Users: Carefully follow the outlined steps provided →HERE
• To learn more about the system, users are encouraged to visit →HERE
Got optimized for scalper and intraday traders ► v2v Power/Strength
Code: Select all
// =====================================================================
// v3 Bias Color Mapper (smooth hyperbolic scaling via atan)
// =====================================================================
color GetBiasColorV3(string bias, double val, double signedPercent, bool isSynthetic)
{
// Base colors
color cStrongUp = clrLimeGreen;
color cUp = clrMediumSeaGreen;
color cNeutral = SafeColor(val >= 4.5 ? clrLightGray : RGBc(180,180,180));
color cDown = clrDarkOrange;
color cStrongDown = clrCrimson;
// Synthetic slightly more "intense"
double synBoost = (isSynthetic ? 1.20 : 1.00);
// Convert signedPercent (-1..+1) into soft intensity (0..1)
double raw = MathAbs(signedPercent);
double inten = (2.0 / 3.1415926535) * MathArctan(2.5 * raw * synBoost);
if (inten < 0.0) inten = 0.0;
if (inten > 1.0) inten = 1.0;
if (bias == "strong_strengthening") return MixColor(cNeutral, cStrongUp, inten);
if (bias == "strengthening") return MixColor(cNeutral, cUp, inten);
if (bias == "weakening") return MixColor(cNeutral, cDown, inten);
if (bias == "strong_weakening") return MixColor(cNeutral, cStrongDown, inten);
return(cNeutral);
}
Getting started with v2v dynamic trading system:
• Essential Steps for New Users: Carefully follow the outlined steps provided →HERE
• To learn more about the system, users are encouraged to visit →HERE
Since Frank Sinatra sings in his own way, my charts sing... ♪ I did it, My... Way... ♬ ; )─