Search found 38 matches

by Abhi
09 Apr 2023
Forum: MultiCharts .NET
Topic: Volume Profile and Bars on the chart
Replies: 2
Views: 998

Volume Profile and Bars on the chart

Is it possible to provide some space between the last bar on the chart and the volume profile. The last bar always overlaps on the volume profile and the volume numbers on the volume profile are difficult to read.

See the screenshots below
screenshot.png
(27.81 KiB) Not downloaded yet
screenshot1.png
(34.92 KiB) Not downloaded yet
by Abhi
29 Jan 2022
Forum: MultiCharts .NET
Topic: Send keystroke to the chart
Replies: 2
Views: 910

Re: Send keystroke to the chart

Thanks a lot Tammy. Found a freeware software on the internet that sends keystroke to any windows application.

http://prjsoft.ru/sendkeys.php
by Abhi
29 Jan 2022
Forum: MultiCharts .NET
Topic: Multicharts integration with stock brokers
Replies: 15
Views: 4301

Re: Multicharts integration with stock brokers

Don't know if Multicharts is aware, Ctrader now offers FIX API connections details on their website for platforms to connect to. Ctrader is for forex, popular stocks, bonds, indices like SPY, DAX, NASDAQ and what is good is that data is free. Integration will allow Multicharts to offer free data on ...
by Abhi
15 Jan 2022
Forum: MultiCharts .NET
Topic: Send keystroke to the chart
Replies: 2
Views: 910

Send keystroke to the chart

Hey Guys, Question - How can we write a piece of code to send keystroke to the chart from a C# indicator. I Googled on the net I see various code which sends keystroke from a C# form to another program, but when I tried to copy it on a C# indicator, it gives out an error. Indicator does not identify...
by Abhi
12 Aug 2021
Forum: MultiCharts .NET
Topic: Multicharts integration with stock brokers
Replies: 15
Views: 4301

Re: Multicharts integration with stock brokers

Hello,

Our team is already in the process of developing a plugin for TD Ameritrade.
Brilliant!!!!! Thanks Vlada for the update.
by Abhi
31 Jul 2021
Forum: MultiCharts .NET
Topic: Multicharts integration with stock brokers
Replies: 15
Views: 4301

Re: Multicharts integration with stock brokers

Hello everyone,

Thank you for sharing your suggestions for the new brokers.
I have reported this info to our Engineering Team.
Cheers Vlada!!!, thanks a lot.
by Abhi
04 Jun 2021
Forum: MultiCharts .NET
Topic: Multicharts integration with stock brokers
Replies: 15
Views: 4301

Re: Multicharts integration with stock brokers

Hi Vlada, Nice to hear from you after a while. Hope you are well and safe. I have an account with Interactive Brokers and I connect Multicharts with IB. But Interactive Brokers are not the popular choice with retail traders anymore. In fact none of the above mentioned ones (except for Interactive Br...
by Abhi
01 Jun 2021
Forum: MultiCharts .NET
Topic: Multicharts integration with stock brokers
Replies: 15
Views: 4301

Multicharts integration with stock brokers

This is just a wish list and you may ignore my comments. I am not aware of what Multicharts roadmap is and if the management has any thoughts on the stock market. There could be many hindrances like manpower and negotiation with stock brokers for integration of Multicharts with stock brokers. I just...
by Abhi
06 Jul 2020
Forum: MultiCharts
Topic: Multicharts Tradingview integration
Replies: 9
Views: 7039

Re: Multicharts Tradingview integration

Or, for that matter, if the Multicharts get the same data feed for equities and futures as Tradingview for a nominal monthly fee, No need to integrate Multicharts with Tradingview. Multicharts would become a very competitive product. I think SC and NT Trader and other platforms do the same thing, pr...
by Abhi
27 Oct 2019
Forum: MultiCharts
Topic: Multicharts Tradingview integration
Replies: 9
Views: 7039

Multicharts Tradingview integration

Hi Henry et al, You probably have seen requests from users to integrate Multicharts Tradingview integration earlier. Just a suggestion :) - Now that the US stock brokers like Interactive brokers, TS, TD Ameritrade and other big brokers have declared $0 commission for US stocks it will be a great opp...
by Abhi
12 Aug 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

The complete code. Sharing and caring for the Multicharts community :) Every time the price is near the range of volume POC +/_- 0.05, alert will be generated. Thanks a lot Henry and Darob for all your inputs on this. I used your suggestion Darob to recalculate the indicator after every 3 seconds. A...
by Abhi
12 Aug 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

Hi Henry and Darob, found out a way to generate alert when price crosses volume point of control. I am using the following in the code:- double PriceValue = (double)vp.POCForBar(bn).Dbl; if ( (PriceValue - .05 <= Bars.CloseValue) && (Bars.CloseValue <= PriceValue + .05) ) { Alerts.Alert("Crossed POC...
by Abhi
21 Jun 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

Hi Abhi and Henry. Was this ever solved? When volume profile is enabled I’ve found that alerts involving vp levels don’t always fire when set to bar close, but when set to once per bar they do. Is this by design? (I’m referring only to setups that are valid at bar close.) Many apologies Darob, comp...
by Abhi
06 Apr 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Re: Examples of accessing volume profile values

Abhi, accessing the Volume Profile values (like in your code above) will work on a chart with the enabled Volume Profile only. You will need to use the DataLoader in your code in order to receive the Volume Profile data in the scanner window. Thanks Henry I saw the DataLoader example to call a symb...
by Abhi
26 Mar 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

Hi Darob, I was not giving a feedback I was just telling my opinion :) I am no better than you in Multicharts c# coding. I have done easy language coding and c# in ICMarkets but Multicharts .NET has a steep learning curve. As you said, let's wait for the expert to comment. Like I said earlier, if yo...
by Abhi
25 Mar 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

Hi Darob, I am open to all suggestions, you can give as many as you want, I will be very glad to try out. I tried the above option of recalculating after both 1 and 10 seconds, didn't work. Just thinking out loud - the crossover and crossunder interfaces take two double series as parameters and comp...
by Abhi
20 Mar 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

Hello Abhi, You need to make sure the alerts for the indicator are enabled in the settings: Indicator: http://www.multicharts.com/trading-software/index.php/Using_Alerts If an alert was not generated, then the condition for generating it has not been met. You will need to add output logic to debug ...
by Abhi
15 Mar 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Re: Indicator does not generate alert when price crosses VPOC

if ( this.CrossesOver(VPOCDoubleSeries,Bars.Close) || this.CrossesUnder(VPOCDoubleSeries,Bars.Close)) { Hi, I may be all wet, but is Bars.Close just the last traded price when UpdateEveryTick is set to true, and therefore never crossed? Thanks Darob for the suggesstion, I ticked off that option, di...
by Abhi
13 Mar 2019
Forum: MultiCharts .NET
Topic: Indicator does not generate alert when price crosses VPOC
Replies: 18
Views: 6128

Indicator does not generate alert when price crosses VPOC

Hi, I am using the below code, the indicator generate should generate alert when the close of the bar crosses below or above the volume profile. For some reason, alert is never generated, what am I doing wrong here. using System; using System.Drawing; using System.Linq; using PowerLanguage.Function;...
by Abhi
12 Mar 2019
Forum: MultiCharts .NET
Topic: Volume profile volume above and below VPOC
Replies: 3
Views: 1793

Re: Volume profile volume above and below VPOC

Hello, Abhi, Could you please describe in more details what you are trying to achieve and attach screenshots demonstrating it? If you use any script, please attach the script and the workspace where it is used. No problem Svetlana, if we look at the below URL, there are two public interfaces that w...
by Abhi
04 Mar 2019
Forum: MultiCharts .NET
Topic: Volume profile volume above and below VPOC
Replies: 3
Views: 1793

Volume profile volume above and below VPOC

We have decimal AboveVAValue { get; } and decimal BelowVAValue { get; } interface to get cumulative volume on all the levels higher than/lower than the highest limit/lowest limit of Value Area. Do we have similar interfaces for VPOC i.e. to get cumulative volume on all the levels higher than/lower t...
by Abhi
27 Feb 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Re: Examples of accessing volume profile values

Abhi, accessing the Volume Profile values (like in your code above) will work on a chart with the enabled Volume Profile only. You will need to use the DataLoader in your code in order to receive the Volume Profile data in the scanner window. Thanks Henry I saw the DataLoader example to call a symb...
by Abhi
28 Jan 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Re: Examples of accessing volume profile values

Thanks Henry for asking, I want to display volume area high and volume area low on a watch list along with other values that I monitor. as in the screenshot below.

is it possible to do it. instead of opening each chart and check for the VAH and VAL, I want to read on the watch list.
Screenshot.png
(72.6 KiB) Downloaded 930 times
by Abhi
27 Jan 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Re: Examples of accessing volume profile values

Here is the code. Please help Henry :) using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] [UpdateOnEveryTick(true)] [SkipIdenticalTicks(false)] public class AG_Volume_Profile : IndicatorObject { public AG_Volu...
by Abhi
27 Jan 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Re: Examples of accessing volume profile values

Thanks Henry, it looks like you can get the values of volume profile on a chart. You cannot get the values of VP on a watch list. Is it a true conclusion.
by Abhi
22 Jan 2019
Forum: MultiCharts .NET
Topic: MC.NET previous day close
Replies: 9
Views: 4858

Re: MC.NET previous day close

If anybody wondering how to get range for previous day on a scanner. using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { [SameAsSymbol(true)] [UpdateOnEveryTick(true)] [SkipIdenticalTicks(false)] public class AG_Volume_Profile : In...
by Abhi
22 Jan 2019
Forum: MultiCharts .NET
Topic: MC.NET previous day close
Replies: 9
Views: 4858

Re: MC.NET previous day close

(...) is there a way to track the high and low of the current session on 1 min charts since the start of the session, even if the session crosses over into a different calendar day? See attached example/indicator: using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; ...
by Abhi
20 Jan 2019
Forum: MultiCharts .NET
Topic: MC.NET previous day close
Replies: 9
Views: 4858

Re: MC.NET previous day close

(...) is there a way to track the high and low of the current session on 1 min charts since the start of the session, even if the session crosses over into a different calendar day? See attached example/indicator: using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; ...
by Abhi
19 Jan 2019
Forum: MultiCharts .NET
Topic: Examples of accessing volume profile values
Replies: 10
Views: 5144

Examples of accessing volume profile values

Sorry a very daft question, are there more examples on how to access volume profile values. Agreed that .NET is a steep learning curve compared to easy language, but without more examples it is very difficult to code on your own for simply plotting VAH and VAL on a scanner. There is only one example...
by Abhi
02 Apr 2018
Forum: MultiCharts .NET
Topic: Chaos Fractal
Replies: 4
Views: 2221

Re: Chaos Fractal

Thanks Darob, I had tried the line option before but wasn't very happy with the UI. It is not clean. Does not draw square lines like my easy language code. Hi Multicharts, any help here. :) I have posted my easylanguage code below, you may use my code. win-win situation :) Easy Language code --- Inp...
by Abhi
31 Mar 2018
Forum: MultiCharts .NET
Topic: Chaos Fractal
Replies: 4
Views: 2221

Chaos Fractal

Hi, The chaos fractal in Multicharts.NET paints the dots as shown below. please open the image in a new window or tab. http://www.chartupload.com/images/11868522251814948601.png I have worked quite a bit on easlylanguage. The easylanguage chart looks as below http://www.chartupload.com/images/990666...
by Abhi
19 Jun 2017
Forum: MultiCharts .NET
Topic: Stock broker + good data feed for Multicharts [SOLVED]
Replies: 1
Views: 2363

Stock broker + good data feed for Multicharts [SOLVED]

Apart from Interactive brokers are there any stock brokers that support Multicharts platform. I read a lot of places IB data feed is not good for stock day trading. If I go for a separate data feed like IQfeed, they are damn expensive for a starter like me.
by Abhi
10 Jun 2016
Forum: MultiCharts
Topic: Plot bid traded vs ask traded
Replies: 7
Views: 3570

Re: Plot bid traded vs ask traded

Hi Henry, Thanks for the note. May be I was not clear in my previous post, apologies. The attached is a ask traded vs bid traded chart. For the highlighted bar the volume traded on the ask side = 170+352+395+25 = 942 The volume traded on the bid side = 67 + 372 + 756 + 301 = 1496 I want to calculate...
by Abhi
09 Jun 2016
Forum: MultiCharts
Topic: Plot bid traded vs ask traded
Replies: 7
Views: 3570

Re: Plot cumulative volume against bid and ask for a bar

I want to plot the cumulative volume against each bar as opposed to just calculate the cumulative volume. Multicharts support any suggestions.

The cumulative delta chart is not that informative about each bar.
by Abhi
09 Jun 2016
Forum: MultiCharts
Topic: Plot bid traded vs ask traded
Replies: 7
Views: 3570

Re: Plot bid traded vs ask traded

Hi, I want to plot cumulative volume on the ask side and bid side for a bar, but all it plots is upticks vs downticks. Anybody has any idea how to calculate cumulative volume on the bid and ask side. This is very similar to cumulative delta but with more info. Easylanguage code below. :: Open your ...
by Abhi
08 Jun 2016
Forum: MultiCharts
Topic: Plot bid traded vs ask traded
Replies: 7
Views: 3570

Plot bid traded vs ask traded

Hi, I want to plot cumulative volume on the ask side and bid side for a bar, but all it plots is upticks vs downticks. Anybody has any idea how to calculate cumulative volume on the bid and ask side. This is very similar to cumulative delta but with more info. Easylanguage code below. Variables: Tic...
by Abhi
10 Mar 2016
Forum: MultiCharts .NET
Topic: Custom DOM
Replies: 1
Views: 2442

Custom DOM

Has anybody attempted to write a custom DOM in multicharts.NET. I will give a try. Starting point will be I guess to look at _Market_Depth_On_Charts_ indicators to understand how the tick data is picked up and displayed. Have a bit of programming background but in non-Microsoft world. Will install V...

Go to advanced search