WICK SIZE IN THE TOOLTIP /DATA WINDOW  [SOLVED]

Questions about MultiCharts and user contributed studies.
krisnara
Posts: 19
Joined: 08 Sep 2020
Been thanked: 1 time

WICK SIZE IN THE TOOLTIP /DATA WINDOW

Postby krisnara » 30 Oct 2022

I would like to get the Bar of the Range(High -Low), UPWick Size (HIGH-CLOSE) and DownWick (CLOSE-LOW) Size in the Tool Tip ie the window that pops up when I click on the bars.

User avatar
Kate MultiCharts
Posts: 593
Joined: 21 Oct 2020
Has thanked: 9 times
Been thanked: 148 times

Re: WICK SIZE IN THE TOOLTIP /DATA WINDOW

Postby Kate MultiCharts » 31 Oct 2022

Hello krisnara,

You can create an indicator with corresponding plots and apply it to your chart. Plot values will be displayed in the Chart Hint.
You can also hide the actual plots from charts by double-clicking them to get to the Format Study menu -> in the Style tab set 'Style' to Invisible.
Values in the Chart Hint.png
(81.21 KiB) Not downloaded yet
Here’s an example:

Code: Select all

var: Range(High - Low); var: UPWick (HIGH - CLOSE); var: DownWick (CLOSE - LOW); Range = (High - Low); UPWick = (HIGH - CLOSE); DownWick = (CLOSE - LOW); plot1(Range, "Range"); plot2(UPWick , "UPWick "); plot3(DownWick , "DownWick ");

krisnara
Posts: 19
Joined: 08 Sep 2020
Been thanked: 1 time

Re: WICK SIZE IN THE TOOLTIP /DATA WINDOW  [SOLVED]

Postby krisnara » 31 Oct 2022

This works like a Charm. Thank you so much ,Kate.


Return to “MultiCharts”