Search found 27 matches

by beggar
13 Oct 2021
Forum: MultiCharts .NET
Topic: ema of an indicator
Replies: 3
Views: 1820

Re: ema of an indicator

Thank you. I am currently having another issue. I am trying to access previous values of the custom standard deviation and divide by it. I am getting errors stating that I am trying to divide by zero zscore.Value = spread[0] - m_xaverage1[1] / m_sdev[1] How can I access previous values. Thanks using...
by beggar
11 Oct 2021
Forum: MultiCharts .NET
Topic: ema of an indicator
Replies: 3
Views: 1820

ema of an indicator

I used the ratio study to create an indicator. But when I tried to add the EMA programming to the indicator I get an error because my indicator is a variable series but the EMA is calling for an Iseries. How can I create and EMA based on the output of the ratio spread? spread.Value = (dataseries1[0]...
by beggar
30 Oct 2017
Forum: MultiCharts .NET
Topic: Flex Renko
Replies: 8
Views: 4860

Re: Flex Renko

I tried catching the exception before and checked the writeline to see if the code continued. It appeared to catch the exception but the code stopped at that point. I'll watch it a little closer to see if it keeps trying until the exception is no longer valid.
by beggar
16 Oct 2017
Forum: MultiCharts .NET
Topic: Flex Renko
Replies: 8
Views: 4860

Re: Flex Renko

Code works. I am able to down load bid/ask data and plot them. I do have one problem. I am using ExecControl.RecalcLastBarAfter instead of wait handles. I am getting the Indexing exception and it is disabling the indicator before it has the opportunity to download the data and plot after ExecControl...
by beggar
06 Oct 2017
Forum: MultiCharts .NET
Topic: Flex Renko
Replies: 8
Views: 4860

Re: Flex Renko

I've read that information before it is very generic. But what I am trying to figure is the Flex Renko you have as a custom resolution has offsets that are not in the basic Renko plugin. So unless I know the plug in parameters or can see the script there is no way for me to download bid ask data for...
by beggar
05 Oct 2017
Forum: MultiCharts .NET
Topic: Flex Renko
Replies: 8
Views: 4860

Re: Flex Renko

What is the plugin name and plugin parameters based on? The custom resolution manager for the flex renko is read only. How am I supposed to get the plugin information.
by beggar
04 Oct 2017
Forum: MultiCharts .NET
Topic: Flex Renko
Replies: 8
Views: 4860

Flex Renko

I am trying do download bid and ask quotes for Flex Renko. The instrument data requests does not have any options for Flex Fenko. I only see options for Renko with delta and a few others. Is there a way to use the existing instrument data requests to get the bid and ask for Flex Renko charts?
by beggar
07 Jun 2017
Forum: MultiCharts .NET
Topic: Data not backfilling
Replies: 1
Views: 1350

Data not backfilling

I travel a lot so I am constantly opening and closing my laptop, So the connection to my Iqfeed connection gets interrupted constantly. I have download missing historical data checked. I am using renko charts based on ticks. I noticed that the system is not filling in the missing data when the conne...
by beggar
06 Jun 2017
Forum: MultiCharts .NET
Topic: Dataloader issues
Replies: 7
Views: 2804

Re: Dataloader issues

Real-time history matching should not affect what the data loader is downloading. If it is noon, the data loader should download all data up till noon
by beggar
06 Jun 2017
Forum: MultiCharts .NET
Topic: Dataloader issues
Replies: 7
Views: 2804

Re: Dataloader issues

They correspond to prior closings of the data series that is being downloaded but not the current one of datetime.now. I've seen it used closing times hours before the current close.

I think real-time history matching is enabled I have to check
by beggar
05 Jun 2017
Forum: MultiCharts .NET
Topic: Dataloader issues
Replies: 7
Views: 2804

Re: Dataloader issues

Also I have noticed some other things. I have 500 symbols in the scanner with an indicator that uses the dataloader. What I have noticed is that while the scanner is updating the 500 symbols, the dataloaded indicators aren't updating until the scanner is done downloading or updating most of the symb...
by beggar
31 May 2017
Forum: MultiCharts .NET
Topic: Dataloader issues
Replies: 7
Views: 2804

Dataloader issues

While using the dataloader on historical data I get accurate results. Once the historical data is downloaded and my studies are calculated on real time data, the studies seem to have wrong tick data to use for calculations. The studies are using the close to calculate the indicators and the real tim...
by beggar
18 Apr 2017
Forum: MultiCharts .NET
Topic: Dataloader
Replies: 1
Views: 1343

Dataloader

What is the difference between the 2? InstrumentDataRequest Req = new InstrumentDataRequest(); InstrumentDataRequest Req = Bars.Request; When I use the Bars.Request the data I received is tied to the bars of the main chart. This one downloads data one bar at a time from the being of the chart data. ...
by beggar
01 Apr 2017
Forum: MultiCharts .NET
Topic: Dataloader
Replies: 1
Views: 1612

Dataloader

I am trying to test the data loader using Renko charts. So far what I have done is create a Renko tick chart with a 10 cent box size. Then I applied a simple dataloader index of closes as a study on the subchart with the same parameters as the Renko chart. The close of the dataloader has the same cl...
by beggar
13 Mar 2017
Forum: MultiCharts .NET
Topic: CustomInstrument
Replies: 5
Views: 2441

Re: CustomInstrument

Any ideas when this releases coming out? It has been confirmed that custominstrument and dataloader does not work with the new chart types. It times out or gives errors when requesting data for renko and the other "exotic" chart types.
by beggar
13 Mar 2017
Forum: MultiCharts .NET
Topic: increment [SOLVED]
Replies: 5
Views: 2192

Re: increment [SOLVED]

That worked thanks.
by beggar
08 Mar 2017
Forum: MultiCharts .NET
Topic: increment [SOLVED]
Replies: 5
Views: 2192

Re: increment [SOLVED]

Is there a way to index a public function with an integer output? I am trying to reference a previous integer value of m_testup and m_testdown. I tried to used a variable series but the _highestbar function is a simple integer m_aroonup = _HighestBar.HighestBar(Bars.High, length +1); m_aroondown = _...
by beggar
08 Mar 2017
Forum: MultiCharts .NET
Topic: increment [SOLVED]
Replies: 5
Views: 2192

Re: increment [SOLVED]

Thanks that helped!!

My brain is slowing picking up the nuances of C#.
by beggar
07 Mar 2017
Forum: MultiCharts .NET
Topic: increment [SOLVED]
Replies: 5
Views: 2192

increment [SOLVED]

I am trying to increment "i" when the current bar close is less than the previous bars close I am only getting a value 1 for "i" even when I have more than one successive close that meets the condition. in regular multicharts, it would count up. But in the C# version I just get a value of one. What ...
by beggar
27 Feb 2017
Forum: MultiCharts .NET
Topic: CustomInstrument
Replies: 5
Views: 2441

Re: CustomInstrument

Thank you
by beggar
24 Feb 2017
Forum: MultiCharts .NET
Topic: CustomInstrument
Replies: 5
Views: 2441

CustomInstrument

Is there a working version of the Custominstrument indicator? The one provided in the faq gives errors when applied to a chart. using System; using System.Drawing; using System.Linq; using PowerLanguage.Function; namespace PowerLanguage.Indicator { public class Test_CustomInstrument : IndicatorObjec...
by beggar
16 Feb 2017
Forum: MultiCharts .NET
Topic: Import/Export [SOLVED]
Replies: 2
Views: 1643

Import/Export [SOLVED]

I am trying to import studies into my trial version of Multicharts.net. Once I select the study to import or export, I don't get the ok option on the editor.

Is it feature disabled during the trial?
by beggar
13 Feb 2017
Forum: MultiCharts .NET
Topic: Adding series and non series integers [SOLVED]
Replies: 2
Views: 1822

Re: Adding series and non series integers [SOLVED]

Josh the Great!! It looks like it worked. I tried checking just the output for the extreme bar and the multicharts.net values seem to be one bar behind regular multicharts

By the way awesome webpage. I have spent the last couple of weeks trying to learn C# and I ran across your page.
by beggar
12 Feb 2017
Forum: MultiCharts .NET
Topic: Adding series and non series integers [SOLVED]
Replies: 2
Views: 1822

Adding series and non series integers [SOLVED]

I am trying to create an Aroon indictor using the ExtremeFC function. I tested the function with an indicator and it seems to work. I tried to create an Aroon indicator and I am getting an error that reads " Operator "-" cannot be applied to operands of type "int" and Powerlanguage.VariableSeries<in...
by beggar
06 Jan 2017
Forum: MultiCharts
Topic: Watchlist
Replies: 5
Views: 1385

Re: Watchlist

I have figured out the problem but have no way to fix it. Let's start with this.
I am using renko charts with 1 tick resolution and a 10 cent box size. The study on the scanner is only using 1 tick resolution. Is there a way to reference renko or exotic type charts with the scanner?
by beggar
06 Jan 2017
Forum: MultiCharts
Topic: Watchlist
Replies: 5
Views: 1385

Re: Watchlist

I have instrument set at 120 days for both chart and scanner I have the studies referenced 1000 bars for scanner and stock studies. I have a 10 bar and a 200 bar moving average for a symbol. The scanner is showing the 2 moving averages as being only 5 or so cents from each other while the chart is s...
by beggar
06 Jan 2017
Forum: MultiCharts
Topic: Watchlist
Replies: 5
Views: 1385

Watchlist

I have some studies on the watchlist using tick resolution. I have a 200 bar and a 10 move moving average applied. The chart I am using has different values than the watchlist moving average values. I tried increasing the number of days that the instrument uses for the studies to 4 months but the va...

Go to advanced search