Search found 65 matches

by dvdkite
08 Sep 2021
Forum: MultiCharts
Topic: Signal doesn't respect the time conditions to enter a trade
Replies: 1
Views: 2654

Signal doesn't respect the time conditions to enter a trade

Hello Everyone, I have a system that I actually use since months in real automated trading but very rarely it enter a trade before the time indicated in the time conditions. My strategy works over a 3 minutes charts and is must enter a trade ONLY between 9:03 and 11:00 of the morning. So basically I...
by dvdkite
10 Sep 2020
Forum: MultiCharts
Topic: Avoid Placing orders out of my trading session
Replies: 12
Views: 2534

Re: Avoid Placing orders out of my trading session

To dvdkite: Time based condition do not work, if you send orders (limit, stop) in the normal session time to broker, you have an after session market and there are pending orders (limit, stop orders) at the broker. Then you get orders you not want. Ok but the order stay alive till the conditions th...
by dvdkite
09 Sep 2020
Forum: MultiCharts
Topic: Avoid Placing orders out of my trading session
Replies: 12
Views: 2534

Re: Avoid Placing orders out of my trading session

Hello, why don't you simply use a time based condition where you're actually triggering the order? I have a boolean condition that I put in the code that generate the order like this: //Time frame of the day where entries are allowed isTheRightTime = ( time >= Time_MorningStart_at and time <= Time_M...
by dvdkite
19 Aug 2020
Forum: MultiCharts
Topic: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data window?
Replies: 7
Views: 1544

Re: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data windo

Hello Josh,

thank you again ...at least now I know that it's not a normal thing... so I hope that MC jump into this issue to help me...
I don't want to create "Tricks" to make my indicator and related strategies.. I prefer to code it as it should be coded...
by dvdkite
18 Aug 2020
Forum: MultiCharts
Topic: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data window?
Replies: 7
Views: 1544

Re: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data windo

In the output ABOVE you can see "Symbol_CurrentBar + MaxBarsBack" PRINTED AS "BarNum" and it print 780 while in data windows we have a total of 535 bars in the chart.... (I 'm running on a 10minutes candlestick chart)... I don't have this problem with MultiCharts so it's hard to tell what's going o...
by dvdkite
18 Aug 2020
Forum: MultiCharts
Topic: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data window?
Replies: 7
Views: 1544

Re: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data windo

Sorry to hear about all the issues you are having. Is perhaps `Symbol_CurrentBar + MaxBarsBack` worth a try? `Symbol_CurrentBar` (https://www.multicharts.com/trading-software/index.php?title=Symbol_currentbar) is a built-in variable so it won't be affected by a different MaxBarsBack setting. Of cou...
by dvdkite
17 Aug 2020
Forum: MultiCharts
Topic: Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data window?
Replies: 7
Views: 1544

Barnumber is supposed to be UNIQUE for every chart bar? Why it is so hard to obtain the same barnumber of data window?

Hello everyone, I'm really getting mad. All I want is to save some barnumber for a future access to the bars in the corresponding position. What I simply want is the UNIQUE "barnumber" located in the DATA WINDOW at the side of the chart. I would like to save the barnumber ( only if it REALLY IS UNIQ...
by dvdkite
11 Aug 2020
Forum: MultiCharts
Topic: is there an easy way to obtain by code the price variation percentual [SOLVED]
Replies: 2
Views: 746

Re: is there an easy way to obtain by code the price variation percentual [SOLVED]

Hello dvdkite,

You can use this code:
100 - ((prevclose * 100)/close)

Please check the attached screenshot.
Thank you. It seems to work perfectly!
by dvdkite
05 Aug 2020
Forum: MultiCharts
Topic: is there an easy way to obtain by code the price variation percentual [SOLVED]
Replies: 2
Views: 746

is there an easy way to obtain by code the price variation percentual [SOLVED]

Hello everyone, is there an easy way to obtain by code the price variation percentual ( typically displayed a the top of the chart automatically) ? (I didn't find any keyword for that) It's not so easy to manually calculate it as sometimes it doesn't take the close of the previous day session.. but ...
by dvdkite
08 Jul 2020
Forum: MultiCharts
Topic: StopLoss order canceled on every bar open
Replies: 2
Views: 887

StopLoss order canceled on every bar open

Hello, Inside my strategy I need to set an OCO order with Stoploss and Target immediately after the system has opened a position. I NEED to set the Stoploss only at the close of the candle where the entry order has been filled, because i need some time for the exact calculation of the stop loss valu...
by dvdkite
08 Jul 2020
Forum: MultiCharts
Topic: Global variables to bridge MC and MT4-MT5 to use collective2, darwinex, zulutrade, .. ?
Replies: 4
Views: 2368

Re: Global variables to bridge MC and MT4-MT5 to use collective2, darwinex, zulutrade, .. ?

HI, It would be SIMPLEST if some cfd broker as ICMARKETS (one with the most honest spread in the world) would create a plugin for multicharts to allow us to use it. Anyway In the past I made some test (the most of the programming has been done by my brother) and I found a way to send the order from ...
by dvdkite
17 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Hello, dvdkite! Apologies for the late reply. Discussion Forum is a delayed response communication tool. That is also expected that most of the help will be provided by the community and not by the support. If you have any urgent questions - contact us via phone, email and live chat. But back to yo...
by dvdkite
07 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Here's one of my IOG signals (all classic backtests): BM OFF (same issue as you): IOG BM OFF.PNG BM ON (1 1tick)...... look it works: IOG BM 1 TICK ON.PNG Settings: SETTINGS.PNG So I really think you've made a mistake somewhere. Can you plot a chart of 1 ticks for the contract in question? Can you ...
by dvdkite
07 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Out of interest why are you using two sets of trade data for extended backtesting and not bid and ask datasets? Or have i misunderstood the image. Does your issue occur only on extended backtesting? If you run your signal on a real-time feed (no need to turn on auto trading) does it place new real-...
by dvdkite
07 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

I’d bet your BM is set to >=1min.

If not, do you definitely have tick data and have you set BM to 1 tick?
Strategy Properties.jpg
(309.27 KiB) Not downloaded yet
with Full IQFEED tick data packet
by dvdkite
06 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Why is IOG “of course” on? I’d bet your BM is set to >=1min. If not, do you definitely have tick data and have you set BM to 1 tick? There’s lots of detail in the forum and in FAQs about limitations of IOG when backtesting unless you have full tick data available. I think you should go take a look ...
by dvdkite
06 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Just quickly, it looks like what can happen when using IOG with Bar Magnifier off. If you reproduce your examples with BM on and set to 1 tick (maybe even just 1min), does it change the fill placement? Hello, I have bar magnifier on (I've just checked) and of course my strategy has IOG on. Anyway t...
by dvdkite
05 Feb 2020
Forum: MultiCharts
Topic: Plot attributes set in code (Type Attribute).
Replies: 6
Views: 2182

Re: Plot attributes set in code (Type Attribute).

David,

Thanks for clarification. We are going to include it in our plans for one of the releases following MultiCharts 14 Release.
Thank you very much... I'm sure a lot of MC users will appreciate it!
by dvdkite
04 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Re: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

I'm still finding this same bug on different instruments and sometimes when it performs for example a buy at the LOW of the candles then it doesn't respect the profit target ( fixed with setProfitTarget( targetPoints * ticksize * bigpointValue ) ) but it show bigger earnings . This could be another ...
by dvdkite
03 Feb 2020
Forum: MultiCharts
Topic: Plot attributes set in code (Type Attribute).
Replies: 6
Views: 2182

Re: Plot attributes set in code (Type Attribute).

Hello, Could you please specify which of the parameters depicted in the picture would you like to change from script? format style.png As for “Type” — we cannot change it from code, as this parameter is set one time at creation. As for “Style” — it is possible to add a feature that allows to modify...
by dvdkite
03 Feb 2020
Forum: MultiCharts
Topic: Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?
Replies: 14
Views: 3824

Buy at LOW and Sell on HIGH of a candle, is this a BUG? How's possible?

Hello everyone, I have a verysimple strategy that work of 30 minutes chart that use the supertrend and it sellshort just 1 tick BELOW a roof of the ST or BUY 1 tick ABOVE the floor of a ST. So there's nothing particular in my code that is like: sellshort(NumToStr(barinterval,0) + "m Short") 1 contra...
by dvdkite
28 Jan 2020
Forum: MultiCharts
Topic: Coding default plot style type
Replies: 7
Views: 2961

Re: Coding default plot style type

The feature request is here: MC-1737 - Set the plot style programmatically
Honeslty it's 2020 and such a simple feature it's not available... Can't believe it. :( :( :(
by dvdkite
24 Jan 2020
Forum: MultiCharts
Topic: Plot attributes set in code (Type Attribute).
Replies: 6
Views: 2182

Re: Plot attributes set in code (Type Attribute).

Hello I found this post using google... Honestly is it really not available SETPLOTYPE in 2020 for an evoluted top platform like multicharts??? So I really have to manually set "hystogram" or "line" from the chart option? It MUST be done by code... Is there a logical reason because it is not availab...
by dvdkite
23 Dec 2019
Forum: MultiCharts
Topic: What is the best way to sell and indicator with a monthly subscription? Why MC doensn't have a market 4 sell indicators?
Replies: 1
Views: 688

What is the best way to sell and indicator with a monthly subscription? Why MC doensn't have a market 4 sell indicators?

Hello MC team, I was wondering what is the best way to sell and indicator with a monthly subscription and or sell it with a lifetime licence? I mean is there a way to protect an indicator to be hacekd and free distribuited? The only way I can actually imagine is to send a new copy of the indicator w...
by dvdkite
04 Dec 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

There is no bug. You don't have a valid set of initial conditions to allow a first trade.
Just write it simply:

Code: Select all

if (MarketPosition=0 and BarsSinceExit(1)>3) or MarketPosition(1)=0 then buy next bar market;
Really thank you very much!! You solved it! :-D
by dvdkite
30 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

Sorry bud, i think you’ve gotten in a muddle with terminologies there. Have a read up on open next bar. To rephrase: What event is triggering your code to calculate (e.g. Barstatus(1)=2)? I was merely curious to see if non barstatus=2 calculation was to blame. Hello sorry for the misunderstanding.....
by dvdkite
29 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

Anyway , if possible, I would APPRECIATE an official Answer to my question by the Multicharts teams thanks as it seems to be a bug.
by dvdkite
29 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

Use what?

Question was: if "open next bar" anywhere in your code?
sorry... I already answered in my first reply... I use only LIMIT ORDERS for entries and setProfittaget and setstopploss for exit
by dvdkite
29 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

ctrl+f “open next bar”

any hits?
Can you please explane better how should I use it?

thanks
by dvdkite
28 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

Can you post any more signal code? out of interest, do you use “open next bar” in your signal? Hello, ok this is simplest line of code I've tryed before the other conditions that trigger an entry... if marketposition = 0 and barssinceexit(1) > 3 then begin So if barssinceexit(1) > 3 is true it ALLO...
by dvdkite
22 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

Re: unable to use barssinceexit(1) but able to print it [SOLVED]

Hello,

still no luck with this issue. I searched another way to avoid entries if the at the previous bar there was a trade but I cannot find it. I have this problem on ly with higher time frame like 15 and 30 minutes.

Any ideas?

Thanks
by dvdkite
20 Nov 2019
Forum: MultiCharts
Topic: unable to use barssinceexit(1) but able to print it [SOLVED]
Replies: 12
Views: 3346

unable to use barssinceexit(1) but able to print it [SOLVED]

Hello, I'm basically trying to avoid an entry if there was already an entry closed in the previous bar. So just to be sure I decided the avoid entries at least for 3 bars after the last trade so I made this code: if (EntriesToday(Date) > 0 = true) then begin if barssinceexit(1) > 3 then canEntry= tr...
by dvdkite
15 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1811

Re: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]

David, can you elaborate why Max Bars back is not the problem here? How many bars do you have on the chart in total and was is the bar number of the first signal? In fact with 10 minute bars for the Dax and starting on the 6th of September it's not unlikely that the high Max bars setting you are us...
by dvdkite
14 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1811

Re: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]

Nobody has any idea about what could be the problem?? I really don't know what else to check.... Thanks
by dvdkite
13 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1811

Re: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]

Why do you need 2,500 bars of MBB? Please go to the wiki and study the purpose and usage of the MaxBarsBack. That 2500 setting has been forgotten there because in the past I had a studh to run that required that number just to start.... then I simply let as it was the setting. But that's not the pr...
by dvdkite
12 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1811

Re: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]

Look up MaxBarsBack Hello Tj, do you mean this settings? Cattura.JPG But as I said for example if I simply switch the chart from 10 minutes to 1 minutes it is calculating the strategy from the 10th of septemper (almost close to the 6th where the charts starts) so it is already ABLE to go back many ...
by dvdkite
11 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1811

Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]

Hello Everyone, I have a very simply strategy ( it's just at the first step of development ) that buy after a green candle with a body of minimum 15 pts and sell after a red candle of 15 pts..... TArget and stop are fixed... It's that simple . So I have a Chart with the 10 minute DAX future and when...
by dvdkite
29 Aug 2019
Forum: MultiCharts
Topic: Here is my Linear Regression 2 colors code - How can I anticipate the color switch? [SOLVED]
Replies: 2
Views: 969

Re: Here is my Linear Regression 2 colors code - How can I anticipate the color switch? [SOLVED]

You will need to add this line of code to the respective plot:

Code: Select all

SetPlotColor[Displace+1]( 1, UpColor );

SetPlotColor[Displace+1]( 1, DnColor );
Amazing Tj! Thanks you, it's working perfectly now
by dvdkite
29 Aug 2019
Forum: MultiCharts
Topic: Here is my Linear Regression 2 colors code - How can I anticipate the color switch? [SOLVED]
Replies: 2
Views: 969

Here is my Linear Regression 2 colors code - How can I anticipate the color switch? [SOLVED]

Hello Everyone, I'm using the following code for the Linear Regression but it change its color a bar late for... inputs: Price( Close), Length( 89), Displace( 0), UpColor( green), DnColor (red), PaintInBarLRCLine ("Yes"); variables: LinReg( 0 ),Trend (0),Transition (0) ; if Displace >= 0 or CurrentB...
by dvdkite
16 Jul 2019
Forum: MultiCharts
Topic: Global Variables - How to make them work on hystoric chart and not only in real time [SOLVED]
Replies: 4
Views: 2438

Re: Global Variables - How to make them work on hystoric chart and not only in real time [SOLVED]

Hello everyone again, has anyone had my problems with Global Variables? I know that a few people actually using them... but it would be nice to use them non only in real time but also to see them work on historical data on the chart... I'm sure there's a way but I really cannot find any indications ...
by dvdkite
11 Jul 2019
Forum: MultiCharts
Topic: Global Variables - How to make them work on hystoric chart and not only in real time [SOLVED]
Replies: 4
Views: 2438

Global Variables - How to make them work on hystoric chart and not only in real time [SOLVED]

Hello Everyone, Let me better explane my question. I have 2 chart that are actually communicating using Global Variables. In the Chart 1 I use codes like this to SET the Global Variables values: value2 = GVSetFloat(2,C); value3 = GVSetInteger(3,date); value4 = GVSetInteger(4,time); Then in Chart 2 I...
by dvdkite
20 May 2019
Forum: MultiCharts
Topic: setstoploss( stopPoints * bigpointvalue); with 20 points but I got stopped with 39 !!! How's possible??
Replies: 3
Views: 1249

Re: setstoploss( stopPoints * bigpointvalue); with 20 points but I got stopped with 39 !!! How's possible??

Out of interest what Bar Magnifier settings are you using in conjunction with this IOG backtest? Hwllo wilkinsw, My Bar magnifier settings are BARMAGNIFIER.JPG Setstoploss should be totally indipendent from the IOG settings (that however it is true) so I cannot explain it. I suspect you've been sto...
by dvdkite
17 May 2019
Forum: MultiCharts
Topic: setstoploss( stopPoints * bigpointvalue); with 20 points but I got stopped with 39 !!! How's possible??
Replies: 3
Views: 1249

setstoploss( stopPoints * bigpointvalue); with 20 points but I got stopped with 39 !!! How's possible??

Hello Everyone, The question is very very simple. I'm backtesting a strategy WITH IOG that uses the zig zig swings to perferm entries and I'm using fixed stop loss and target (20 and 10 points). So By using the setstoploss( stopPoints * bigpointvalue); with 20 points but I got stopped with 39 in my ...
by dvdkite
03 May 2019
Forum: MultiCharts
Topic: How can I get the high and low of the previous day session
Replies: 10
Views: 5196

Re: How can I get the high and low of the previous day session

. . . but it does not work. I simply cannot find what the problem is.... Regards, David Please post a screen shot of your chart. Please draw on the chart what you are looking for. Hello Tj, As you wish here is the chart: MCforum.JPG As I said I need to know at the session open in the morning ( so a...
by dvdkite
03 May 2019
Forum: MultiCharts
Topic: How can I get the high and low of the previous day session
Replies: 10
Views: 5196

Re: How can I get the high and low of the previous day session

Hello David I did not try your code, but the logic is good The oldest bar event( day_High or Day_Low) will be represent by the smallest bar number BarMin_BarMax.png Hello arjfca and thanks for you reply, Ok so if you say that the code is good then there must be some other problem because I always g...
by dvdkite
02 May 2019
Forum: MultiCharts
Topic: How can I get the high and low of the previous day session
Replies: 10
Views: 5196

Re: How can I get the high and low of the previous day sessi

Here is my solution 1' count the number of bars that compose the day When done, then each time a day finished, look for the lowest and the highest price for the last number of bars that compose the day Et voilà! Martin // return the high and low of the previous session day Var: Intrabarpersist Barc...
by dvdkite
30 Apr 2019
Forum: MultiCharts
Topic: Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker
Replies: 4
Views: 1454

Re: Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker

Hello David, Let me address your questions in order. 1) TIF GTC = Good Till Cancel. TIF is not related to the order rejection in this case. Please refer to the Logs tab of the Order and Position Tracker that should have the reason of the reject specified there. Please make sure the filters at the t...
by dvdkite
29 Apr 2019
Forum: MultiCharts
Topic: Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker
Replies: 4
Views: 1454

Re: Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker

QUICK UPDATE: I just came back at my desk and I can see an oper trade... but there's no trade of it in the position tracker (of course you don't see it in the Orders tab neither)??? Do you see it in the chart ? It has been open a SHORT at 12351 called "Flat SE 4"... Still a mistery (or a bug)... DO...
by dvdkite
29 Apr 2019
Forum: MultiCharts
Topic: Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker
Replies: 4
Views: 1454

Paper Trading issue: 1) order rejected and 2) a trade appear on chart but not on traker

Hello Everyone, I'm new to paper trading. I've created a workspace with a chart and a signal and put it alive with Orders Automation using the Paper trading broker to see how it work. Anyway I' had 2 problems: 1) When inside my strategy the order conditons are met then a limit order is placed. As yo...
by dvdkite
29 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Re: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

Interesting question ( keeping in mind that I have IOG ON ): Is there a way to SEND the entry limit order when the strategy conditions are met and KEEP IT ALIVE till the end of the bar? I mean even if just the tick after the order generations the triggering conditions are changed? David, there is n...
by dvdkite
25 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Re: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

Hello Henry, today and yesteday I started to check all your points . Hello dvdkite, The orders are kept at the broker while they are generated by the strategy. That means the conditions for order generation should be met in your code on each tick (IOG=ON) calculation while you need to keep your orde...
by dvdkite
24 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Re: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

. . . But the only button that I see to post the image is a small image icon and it only provide the img tags for the image url ( I don't see an option to upload an image here ). Anyway the alternative link of the image is https://futures.io/attachments/265243 Not everyone can see the picture at th...
by dvdkite
24 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Re: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

See post #1 & post #2 https://www.multicharts.com/discussion/viewtopic.php?t=11713 ps. your image is not showing. You need to upload the picture to this site. Hi Tj, I modified the post and now you can see the code. But the only button that I see to post the image is a small image icon and it only ...
by dvdkite
24 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Re: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

Hello Henry, As I've done on futures.io I'm posting here the code without some parts. I will carefully check your list even if it would not be so easy for me to find out some of your point ( I really don't know how to verify 1,2,3 and 4 ). Anyway do you see in the code below any wrong piece of code ...
by dvdkite
24 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 3991

Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]

Hello Everyone, https://futures.io/attachments/265240 I’m TRYING to go live with my strategy with multicharts but I already had problems with sending my orders. Yesterday My orders were rejected for missing TIF… then I found the solution on MC forum and I made the correct broker lookup setting. The ...
by dvdkite
31 Jan 2019
Forum: MultiCharts
Topic: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]
Replies: 9
Views: 4003

Re: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]

With last I mean the Latest (today is 31st , I installed it yesterday). Version 12.0 Release (Build 17586). Anyway I left the 2 chart open for 3 hours when I went home for lunch and now I can see that it is working! The code above is sending the value between charts. Looking at this...I suppose that...
by dvdkite
31 Jan 2019
Forum: MultiCharts
Topic: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]
Replies: 9
Views: 4003

Re: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]

Hi. I also just imported GV+2-2.ELD but I'm still unable to communicate between 2 charts. I just upgraded to the last version of multichart so I suppose that every required dll are already embedded. So in one chart I've tried to use GVSetInteger(1,myValue); and in another chart I'm trying get myValu...
by dvdkite
19 Dec 2018
Forum: MultiCharts
Topic: Why in 2018 still so difficult to access values from other DataN/indicators
Replies: 10
Views: 3222

Re: Why in 2018 still so difficult to access values from other DataN/indicators

@hughesfleming Thank you VERY MUCH for this suggestion! Of course I prefer to solve problems directly inside the Multicharts environments but this seems to be very interesting to exchange datas not even between charts but also between different applications. I will check it for sure! I would appreci...
by dvdkite
18 Dec 2018
Forum: MultiCharts
Topic: Why in 2018 still so difficult to access values from other DataN/indicators
Replies: 10
Views: 3222

Re: Why in 2018 still so difficult to access values from other DataN/indicators

Hi everyone, I need to communicate between 2 indicator in 2 different charts in the same workspaces.... 1 indicator is applied over a 1 contract bar chart and the other indicator in the other chart is on a 150 contract bar chart. For testing purposes I tried to put i_setplotvalue(111, 333); // in th...
by dvdkite
16 Nov 2018
Forum: MultiCharts FAQ
Topic: Supported MultiCharts Brokers
Replies: 21
Views: 35310

Re: Supported MultiCharts Brokers

Hi, you should remove AVATRADE from the list... I'm in chat with them for around 10 minutes just to receive this final comment :lol: :lol: : "I apologize, I thought you meant Multi Account Manager. Multicharts, we do not provide." By the way PLEASE can anyone tell me if is there any CFD broker for m...
by dvdkite
28 Sep 2018
Forum: MultiCharts
Topic: How access to DOM bid and ask data from easylanguage and DTN IQFEED
Replies: 1
Views: 875

How access to DOM bid and ask data from easylanguage and DTN IQFEED

Hello everyone, I'm trying for the first time to access to the DOM bid and ask data from easylanguage. I made several test with dom_bidscount and similar keyword but I always receive 0 when I try to print them. I also tried to use this sample code: var0(0); if dom_isconnected then var0 = dom_askpric...
by dvdkite
03 Aug 2018
Forum: MultiCharts
Topic: Symbol Mapping MGC with IB
Replies: 10
Views: 3727

Re: Symbol Mapping MGC with IB

Hello MC support, I came across this Post because I was finding a way to trade the minidax FDXM but using the chart of the big FDAX. As I've understood it is not possible just with the symbol mapping. Usually I create the strategy for the DAX and then I " convert " it for the miniDAX using FXDM as D...
by dvdkite
01 Jun 2018
Forum: MultiCharts
Topic: "Intraday Margin mode" for future orders with WEBANK italian broker
Replies: 3
Views: 1087

Re: "Intraday Margin mode" for future orders with WEBANK italian broker

Hello again, Any tips from Mulchart staff on how set up the INTRADAY MARGIN ORDERS?

Thanks,

David
by dvdkite
31 May 2018
Forum: MultiCharts
Topic: "Intraday Margin mode" for future orders with WEBANK italian broker
Replies: 3
Views: 1087

"Intraday Margin mode" for future orders with WEBANK italian broker

Hello everyone, I have recently purchased MC and I'm actually testing it with WEBANK (it provide both datafeed and brokerage). I'm using MC in connection with the "T3 Open" platform from Webank (proprietary). I'm trying to place a order on the MINIDAX ( webank code FDXMM8 ) and with webank the regul...

Go to advanced search