Search found 22 matches

by pdemontferrier
08 Oct 2019
Forum: MultiCharts .NET
Topic: Volumes and Ticks at same time in same indicator [SOLVED]
Replies: 4
Views: 1895

Re: Volumes and Ticks at same time in same indicator [SOLVED]

Hi Svetlana,
It's a very good idea, thank you very much.
Have a nice day.
Patrick
by pdemontferrier
03 Oct 2019
Forum: MultiCharts .NET
Topic: Volumes and Ticks at same time in same indicator [SOLVED]
Replies: 4
Views: 1895

Re: Volumes and Ticks at same time in same indicator [SOLVED]

Hi Svetlana,

I would like to know the volume per tick. This information gives and idea of the liquidity level.
This means I need to access the true value of volumes and ticks at the same time.
by pdemontferrier
10 Sep 2019
Forum: MultiCharts .NET
Topic: Volumes and Ticks at same time in same indicator [SOLVED]
Replies: 4
Views: 1895

Volumes and Ticks at same time in same indicator [SOLVED]

Hello everyone, I would like to monitor real time an average of the volumes exchange by ticks. I know how to access independently volumes or ticks in an indicator using the indicator setting window. But I would like to know if you can access both data in the same indicator. And if yes how you can ac...
by pdemontferrier
08 Apr 2019
Forum: MultiCharts .NET
Topic: Quotes database folder [SOLVED]
Replies: 2
Views: 1704

Re: Quotes database folder [SOLVED]

Thank you Chris,

Regards

Patrick
by pdemontferrier
06 Apr 2019
Forum: MultiCharts .NET
Topic: MultiCharts .NET tutorials
Replies: 17
Views: 20835

Re: MultiCharts .NET tutorials

Hi Josh,

I think that every Multicharts user know or should know your platform.
Thanks to you the learning curve gets exponential.
You made a great and very helpful job.
Thank you very much for sharing your knowledge and building your platform.
I sincerely wish you all the best.

Patrick
by pdemontferrier
06 Apr 2019
Forum: MultiCharts .NET
Topic: Quotes database folder [SOLVED]
Replies: 2
Views: 1704

Quotes database folder [SOLVED]

Hello everyone, I need a confirmation regarding the folder and the filename of the quotes storage. The quotes manager download data from brokers and store them in a database. I would like to know the folder of this database in order to move it to a different hard disk, if possible, in case C: crashe...
by pdemontferrier
29 Mar 2019
Forum: MultiCharts .NET
Topic: Modify charpoint of manual trendline [SOLVED]
Replies: 1
Views: 1190

Re: Modify charpoint of manual trendline [SOLVED]

Hi every one, Thank to Josh and it's very helpful website I found the solution : if ( (MVT.End.Price - MVT.Begin.Price) < 5 && (MVT.End.Price - MVT.Begin.Price) != 0) { MVT.End = new ChartPoint (MVT.End.Time,MVT.Begin.Price); } Find here under the link to Josh website : Tradingcode.net Regards
by pdemontferrier
26 Mar 2019
Forum: MultiCharts .NET
Topic: Modify charpoint of manual trendline [SOLVED]
Replies: 1
Views: 1190

Modify charpoint of manual trendline [SOLVED]

Hello every one. I draw manually trends on a window. But often flat trends are difficult to make really flat. This is why I'm looking for a code that will correct the price value of the end charpoint of the trend line. I'm struggling on the final part, if someone could help me to fix this it will be...
by pdemontferrier
05 Feb 2019
Forum: MultiCharts .NET
Topic: Draw a rectangle within an indicator [SOLVED]
Replies: 7
Views: 3425

Re: Draw a rectangle within an indicator [SOLVED]

Hi ABC,
Thank you very much, you answer did fix all as I wanted.
Have a nice day.
Regards.
by pdemontferrier
04 Feb 2019
Forum: MultiCharts .NET
Topic: Draw a rectangle within an indicator [SOLVED]
Replies: 7
Views: 3425

Re: Draw a rectangle within an indicator [SOLVED]

Hi ABC, Find here under the complete code : using System; using System.IO; using System.Linq; using System.Data; using System.Drawing; using System.Diagnostics; using System.Collections.Generic; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [UpdateOnEveryTickAttribute(true)] [Rec...
by pdemontferrier
04 Feb 2019
Forum: MultiCharts .NET
Topic: Draw a rectangle within an indicator [SOLVED]
Replies: 7
Views: 3425

Re: Draw a rectangle within an indicator [SOLVED]

Hi ABC,

Thank you very much for your contribution but it didn't fix my problem.
Even if I set:

[SameAsSymbol(false)]

The rectangle is still on the price chart.

Regards
by pdemontferrier
04 Feb 2019
Forum: MultiCharts .NET
Topic: Draw a rectangle within an indicator [SOLVED]
Replies: 7
Views: 3425

Draw a rectangle within an indicator [SOLVED]

Hello, I wish to draw a rectangle within an indicator. I successfully draw rectangles within a price chart using the following lines : private IRectangleObject PE_07_08, PE_07_08 = DrwRectangle.Create(new ChartPoint(PE_07_08_START,PE_OPENING), new ChartPoint(PE_07_08_END,PE_CLOSING), false); But whe...
by pdemontferrier
31 Jan 2019
Forum: MultiCharts .NET
Topic: Reload Ticks for less than 1 day
Replies: 1
Views: 1111

Re: Reload Ticks for less than 1 day

Hello everyone,

I was wondering if this could work ?

ChartCommands.CommandLine(".rld int=10000 ticks, res=1tick");

Thank you in advance for your contributions.
by pdemontferrier
28 Jan 2019
Forum: MultiCharts .NET
Topic: Reload Ticks for less than 1 day
Replies: 1
Views: 1111

Reload Ticks for less than 1 day

Hello every one. To have accurate volumes figures I need to reload data. To do so, every 15 minutes I use the following code lines : ChartCommands.CommandLine(".rld int=1 day, res=1tick"); ChartCommands.CommandLine(".rld int=1 day, res=1min"); ChartCommands.CommandLine(".rld int=1 day, res=1day"); T...
by pdemontferrier
28 Jan 2019
Forum: MultiCharts .NET
Topic: Format resolution 6 months and 2 Quarters
Replies: 3
Views: 1551

Re: Format resolution 6 months and 2 Quarters

Hello Henry,

Sorry for this late answer. I've try already to change the date to 1st January but it didn't work either.
I guess this is something for your technical team.
Have a good day.
by pdemontferrier
27 Dec 2018
Forum: MultiCharts .NET
Topic: Format resolution 6 months and 2 Quarters
Replies: 3
Views: 1551

Format resolution 6 months and 2 Quarters

Hello everyone, I need to have a Half year resolution. Setting this time frame it appears that the closing dates are March and September, and Not December and June as I expected. Is this normal ? I try the configuration 6 months and 2 quarters and got the same result. Is there someone that can help ...
by pdemontferrier
06 Dec 2017
Forum: MultiCharts .NET
Topic: StrategyInfo.AvgEntryPrice vs EntryPrice(0) [SOLVED]
Replies: 1
Views: 1564

StrategyInfo.AvgEntryPrice vs EntryPrice(0) [SOLVED]

Hello everyone, I'm using Multicharts.net I would like to understand the difference between StrategyInfo.AvgEntryPrice and EntryPrice(0). What I want to do, is one tick after entry, to get the entry price of my trade. I would like also one tick after closing to know the price at exit of last trade. ...
by pdemontferrier
11 Aug 2017
Forum: MultiCharts .NET
Topic: Trend lines drawn by Indicator on Price chart. [SOLVED]
Replies: 4
Views: 2536

Re: Trend lines drawn by Indicator on Price chart. [SOLVED]

My problem is that the indicator draw the trend lines on the Price chart and not in the RSI chart. This shouldn't happen based on the information in your post. You already use the correct overloaded method of the `DrwTrendLine.Create()` method for drawing the trend line on the subchart (and not on ...
by pdemontferrier
11 Aug 2017
Forum: MultiCharts .NET
Topic: Trend lines drawn by Indicator on Price chart. [SOLVED]
Replies: 4
Views: 2536

Re: Trend lines drawn by Indicator on Price chart. [SOLVED]

Hi JoshM, I use the latest version of Multicharts.net. I take profit of your post to thank you for your incredible website TradingCode.net. It's a gold mine of intel that helps me every day on my programing work. About the problem I think I understood what's going on. Wile backtesting, the strategy ...
by pdemontferrier
10 Aug 2017
Forum: MultiCharts .NET
Topic: Trend lines drawn by Indicator on Price chart. [SOLVED]
Replies: 4
Views: 2536

Trend lines drawn by Indicator on Price chart. [SOLVED]

Hello everyone, From my signal I manage to call the Incator by adding the following : using PowerLanguage.Indicator; private RSI_STR04 RSI_Indicator; RSI_Indicator.Draw_RSI_PreEntry_Lines(RSI_01M_PEN_LO1_TIM, RSI_01M_PEN_LO1, RSI_01M_PEN_LO2_TIM, RSI_01M_PEN_LO2) In the RSI Indicator I added the fol...
by pdemontferrier
22 Jun 2017
Forum: MultiCharts .NET
Topic: The Highest value of the last 5 minutes [SOLVED]
Replies: 1
Views: 1730

The Highest value of the last 5 minutes [SOLVED]

Hello everyone, This is my first topic, I've just started with Multicharts. I would like to get the highest value of the RSI during the last 5 closed bars. And I wish this to be recalculated at every new bar. I'm thinking of this code line : protected override void CalcBar(){ ..... //find highest RS...

Go to advanced search