Search found 19 matches

by Riembaus
06 Apr 2024
Forum: MultiCharts
Topic: Trading Custom Futures @ CQG
Replies: 3
Views: 314

Re: Trading Custom Futures @ CQG

Sorry for not getting back, but I didn't receive a notification for this thread. "04-04-2024 05:53:31";"Warning";"MES (Cont.)";"CQG";"My_insaneXOverCombined v3.01";"The Automated Order Execution mode has been turned off"; "04-04-2024 05:53:25";"Information";"MES (Cont.)";"CQG";"My_insaneXOverCombine...
by Riembaus
08 Dec 2023
Forum: MultiCharts
Topic: Trading Custom Futures @ CQG
Replies: 3
Views: 314

Trading Custom Futures @ CQG

Hi I have successfully setup custom futures for MES and the chart is drawn the way it should. I have populated Symbol Mapping with the current and future symbols. BUT! When I try to activate automated trading on my live CQG account, it just switches off as soon as I accept the popup. Running the sam...
by Riembaus
05 May 2023
Forum: MultiCharts
Topic: AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]
Replies: 3
Views: 508

Re: AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]

Fixed it.

Seems like the variable to stuck in memory or something, restart of Multicharts fixed things.

Thank you for the assistance.
by Riembaus
05 May 2023
Forum: MultiCharts
Topic: AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]
Replies: 3
Views: 508

Re: AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]

Thank you, that clears up the error. Next thing to deal with is that the value does not update. It is an EMA value, which is calculated on every bar in the signal and passed to the global variable. The value is updated in the signal, but not in the indicator, resulting a single straight line. If I c...
by Riembaus
03 May 2023
Forum: MultiCharts
Topic: AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]
Replies: 3
Views: 508

AccuracySetNamedDouble / AccuracyGetNamedDouble [SOLVED]

Hi I am trying to pass values from my signal to an indicator, using the Global Variables. In the signal i setup: AccuracySetNamedDouble("ema1", emaS); To retrieve the the value in use the following line in the indicator: value1 = AccuracyGetNamedDouble("ema1"); While compiling the signal, everything...
by Riembaus
23 Nov 2022
Forum: MultiCharts
Topic: [SOLVED] Using snap mode turns drawing invisible [SOLVED]
Replies: 3
Views: 512

Re: Using snap mode turns drawing invisible [SOLVED]

Solution

I had an indicator which used it's own scaling, which differed from the instruments. Result was that drawing snapped way off screen.

To fix this I went to Format indicator --> Scaling ---> Same as instrument
by Riembaus
22 Nov 2022
Forum: MultiCharts
Topic: [SOLVED] Using snap mode turns drawing invisible [SOLVED]
Replies: 3
Views: 512

Re: Using snap mode turns drawing invisible [SOLVED]

Thank you

I will definitely find time to do that
by Riembaus
19 Nov 2022
Forum: MultiCharts
Topic: Trading performance report and Trade summary yields different results
Replies: 1
Views: 358

Trading performance report and Trade summary yields different results

Hi I've only just started forwards testing a strategy, but I realized that the Trading performance report and the Trade summary yield very different result on data over just the past 2 weeks. As I am unable to find any mention or explanation of the difference between the two, I'd like it if someone ...
by Riembaus
17 Nov 2022
Forum: MultiCharts
Topic: [SOLVED] Using snap mode turns drawing invisible [SOLVED]
Replies: 3
Views: 512

[SOLVED] Using snap mode turns drawing invisible [SOLVED]

Multicharts64 Version 14.0 Release (Build24200) Intel Core i7-8705G 3.1 GHz, 4 core, 8 processors 16 GB ram MS Windows 11 Pro Hello I had the problem for a long time, that whenever I tried drawing fib lines, trendlines, whatever, with snap mode turned on, nothing would appear. The cursor showed the ...
by Riembaus
17 Sep 2022
Forum: MultiCharts
Topic: Optimization slows down to a halt - almost
Replies: 3
Views: 806

Re: Optimization slows down to a halt - almost

Upon further investigation it seems that this occurs whenever there are a lot of inputs that the optimization process has to work through. Apparently this makes it impossible for the process to foresee how long it will take to run the full optimization. I have 16 inputs with anywhere from 5 - 30 pos...
by Riembaus
18 May 2022
Forum: MultiCharts
Topic: Optimization slows down to a halt - almost
Replies: 3
Views: 806

Re: Optimization slows down to a halt - almost

I've been doing some testing and it seems that this "error" only occurs when I use huge populations to run a generic optimization something like 10,000,000 if I keep it to below 1,000,000 it runs as intended.
by Riembaus
04 May 2022
Forum: MultiCharts
Topic: Optimization slows down to a halt - almost
Replies: 3
Views: 806

Optimization slows down to a halt - almost

Hi Lately when I run optimizations it starts out with an estimate of maybe 8 hours, but once it gets to around 90% it slows down almost to a halt. Right now it's sitting at 96% claiming it has about 16 minutes to go, but it's been at that number for about 20 minutes. I've tried uninstalling and rein...
by Riembaus
16 Mar 2022
Forum: MultiCharts
Topic: Calculate the distance in points from close to moving average [SOLVED]
Replies: 18
Views: 3030

Re: Calculate the distance in points from close to moving average [SOLVED]

Hmmmm. I tried doing the same on EURUSD and for more reason the signal only reads 2 decimal points, which in turn is why it doesn't get the calculation right.

From what I've found this needs to be addressed in the settings for the symbol somehow, but I'm not quite clear on how to do that.
by Riembaus
16 Mar 2022
Forum: MultiCharts
Topic: Calculate the distance in points from close to moving average [SOLVED]
Replies: 18
Views: 3030

Re: Calculate the distance in points from close to moving average [SOLVED]

I just tried doing this for the e-micro on 5 minute charts, using SMA20 with the following code and it comes back correct. variables: SMA(0), dist(0); SMA = Average(C, 20); if C > SMA then dist = Mod(C, SMA) else dist = Mod(SMA,C); print(Date, " - ", Time, ": Close = ", C, " SMA = ", SMA, " dist = "...
by Riembaus
10 Feb 2022
Forum: MultiCharts
Topic: Calculate the distance in points from close to moving average [SOLVED]
Replies: 18
Views: 3030

Re: Calculate the distance in points from close to moving average [SOLVED]

Wouldn't it be easier to modulate the 2 numbers and multiply it by 4? That's what I do. In your case it would look like: value1 = (Mod (C, SMA)) * 4; Result will be the difference in price between the 2 number and then a multiplication into the tick count. I just set it to value1, you can ofc assig...
by Riembaus
09 Feb 2022
Forum: MultiCharts
Topic: Calculate the distance in points from close to moving average [SOLVED]
Replies: 18
Views: 3030

Re: Calculate the distance in points from close to moving average [SOLVED]

Wouldn't it be easier to modulate the 2 numbers and multiply it by 4? That's what I do. In your case it would look like: value1 = (Mod (C, SMA)) * 4; Result will be the difference in price between the 2 number and then a multiplication into the tick count. I just set it to value1, you can ofc assign...
by Riembaus
27 Jan 2022
Forum: MultiCharts
Topic: CQG Chart freeze
Replies: 4
Views: 894

Re: CQG Chart freeze

Hi Sorry for not getting back to this earlier, but been traveling. The historical data thing may have solved the issue. I realized that I was trying to pull historical data from symbols unavailable to me, so I deleted those from the quotemanager. So far it's been running fine for a week now. I'll le...
by Riembaus
06 Jan 2022
Forum: MultiCharts
Topic: CQG Chart freeze
Replies: 4
Views: 894

CQG Chart freeze

MC Version: v14 build 21978 - 64bit System: Intel Core i7 Ram: 16 GB I'm running into an issue where ever now and then MC stops updating the chart I'm trading. Odd thing is that the DOM windows keeps updating the price. In order to resume the chart getting updated I need to completely exit MC and re...
by Riembaus
31 May 2021
Forum: User Contributed Studies and Indicator Library
Topic: DoubleTops / DoubleBottoms
Replies: 0
Views: 1141

DoubleTops / DoubleBottoms

Hi everyone I'm new to forum, having played around with powerlanguage for the past month. One thing I've been looking for but haven't found anywhere, is an effective way of plotting DT's and DB's. I wanted something dynamic, letting me see what I might over look. After some trial and error and 5 or ...

Go to advanced search