Highest H/lowest L/Donchian Channels; custom scale digits

Questions about MultiCharts and user contributed studies.
ybfjax
Posts: 89
Joined: 05 Nov 2006
Contact:

Highest H/lowest L/Donchian Channels; custom scale digits

Postby ybfjax » 23 Mar 2007

Do you offer a form of Donchian Channels? Or can I create a Highest High or Lowest Low indicator line drawn over xx number of bars or xx number of time?

How do you adjust the decimal scale on a chart so that only a user-defined amount of digits displayed on the actual axis.?

For example, MultiCharts shows 5953.30 . I want 5953.3

Thank you.

User avatar
Stanley Miller
Posts: 556
Joined: 26 Jul 2005
Has thanked: 3 times

Re: Highest H/lowest L/Donchian Channels; custom scale digit

Postby Stanley Miller » 27 Mar 2007

Do you offer a form of Donchian Channels?
This study should be available somewhere, please check:
http://forum.tssupport.com/viewtopic.php?t=3339
Or can I create a Highest High or Lowest Low indicator line drawn over xx number of bars or xx number of time?
This code is very simple:

Code: Select all

input: length(14);
plot1(highest(high,length)[1]);
How do you adjust the decimal scale on a chart so that only a user-defined amount of digits displayed on the actual axis.?

For example, MultiCharts shows 5953.30 . I want 5953.3
Price Scale Settings returns a numeric expression representing the fractional portion of a full point move for a particular symbol. The PriceScale value is represented by a whole number. For example; the PriceScale of the E-Mini S&P is 100, which represents the fractional portion of a full point move for the E-Mini S&P. Any stock would also have a PriceScale of 100. To access the settings:

1. Double-click the desirable symbol in the symbol list.
2. Select appropriate tab in the Edit Symbol window opened.
3. Set desirable properties.

ybfjax
Posts: 89
Joined: 05 Nov 2006
Contact:

Re: Highest H/lowest L/Donchian Channels; custom scale digit

Postby ybfjax » 27 Mar 2007

Do you offer a form of Donchian Channels?
This study should be available somewhere, please check:
http://forum.tssupport.com/viewtopic.php?t=3339
Or can I create a Highest High or Lowest Low indicator line drawn over xx number of bars or xx number of time?
This code is very simple:

Code: Select all

input: length(14);
plot1(highest(high,length)[1]);
Can you draw the the highest high/lowest low based on time and not bars back? for example, HH over the last 48 hours? Could you give me an example code for this?


Return to “MultiCharts”