Search found 7744 matches

by TJ
13 Jun 2013
Forum: MultiCharts
Topic: MULTICHARTS 8.7 BETA 2
Replies: 47
Views: 19206

Re: MULTICHARTS 8.7 BETA 2

Will we be able to plot trendlines and move them to the volume delta bars back on 8.7 final version? It's so frustrating not being able to move trendlines to the back of volume delta bars... I'm forced to have side by side a volume delta and a regular bars chart so I can plot my trendlines studies ...
by TJ
11 Jun 2013
Forum: MultiCharts
Topic: RecalcLastBarAfter and submitting orders [SOLVED]
Replies: 14
Views: 8071

Re: RecalcLastBarAfter and submitting orders [SOLVED]

Don't you get barstatus = -1 with RecalcLastBarAfter(1) and the execution of the study was not the result of a real update tick but the timeout of RecalcLastBarAfter (1 second in this case)? -1 is an error code. You might not get a new tick, but there is no error on barstatus. You will get the late...
by TJ
11 Jun 2013
Forum: MultiCharts
Topic: RecalcLastBarAfter and submitting orders [SOLVED]
Replies: 14
Views: 8071

Re: RecalcLastBarAfter and submitting orders [SOLVED]

Has anyone found a way to submit orders successfully when the study uses RecalcLastBarAfter(1) and barstatus = -1 (meaning there was no update tick but the study executes 1 second after the previous run)? At the moment the orders are ignored when barstatus = -1 (at least with version 8.0). What is ...
by TJ
11 Jun 2013
Forum: MultiCharts
Topic: RecalcLastBarAfter and submitting orders [SOLVED]
Replies: 14
Views: 8071

Re: RecalcLastBarAfter and submitting orders [SOLVED]

Has anyone found a way to submit orders successfully when the study uses RecalcLastBarAfter(1) and barstatus = -1 (meaning there was no update tick but the study executes 1 second after the previous run)? At the moment the orders are ignored when barstatus = -1 (at least with version 8.0). What is ...
by TJ
11 Jun 2013
Forum: MultiCharts
Topic: ES set-up in quote manager / Trading Technologies [SOLVED]
Replies: 4
Views: 3110

Re: ES set-up in quote manager / Trading Technologies [SOLVED]

this is my setting for Interactive Brokers

Image
by TJ
06 Jun 2013
Forum: MultiCharts
Topic: MultiCharts AND/OR Trading Systems setting
Replies: 16
Views: 5779

Re: MultiCharts AND/OR Trading Systems setting

Yes true, thank you very much !! But there s still a little problem, when i have two signals at they same time, variables are both 0 and both systems go on market... Any idea to solve this problem ? Maybe giving a delay to 1 code ? (but is not so good like solution.....) Thx to any answer Regards I...
by TJ
06 Jun 2013
Forum: MultiCharts
Topic: MultiCharts AND/OR Trading Systems setting
Replies: 16
Views: 5779

Re: MultiCharts AND/OR Trading Systems setting

you have to put the GV after the assignment. eg. IF ( MarketPosition_at_Broker <> 0) then flagma = 1 else flagma = 0; FLAGMA = GVSetInteger(2,flagma); flagsto = GVGetInteger(1); IF ( marketposition <> 1 and CONDITION2 AND flagsto = 0 ) then BUY ( "ccilong" ) 1 share NEXT BAR AT MARKET; IF ( marketpo...
by TJ
04 Jun 2013
Forum: MultiCharts
Topic: Plot Previous 5-min High and Low in 5 Sec Chart [SOLVED]
Replies: 6
Views: 4171

Re: Plot Previous 5-min High and Low in 5 Sec Chart [SOLVED]

Hi,
I am attempting to plot the above in a 5-sec chart. Any idea to plat that?
Say,
High = 1000, from 10:10:00 to 10:14:59
Low = 950. from 10:10:00 to 10:14:59
I want to plot these two values on the 5-sec chart starting from 10:15:00 to 10:19:59
Regards,
Sa
Can you draw a chart mock up?
by TJ
04 Jun 2013
Forum: User Contributed Studies and Indicator Library
Topic: Internal Bar Strength (IBS)
Replies: 8
Views: 4774

Re: Internal Bar Strength (IBS)

This will skip a bar's calculation and repeat the previous bar's value

Code: Select all

if Below <> 0 then
IBS = (Above/Below)
else
IBS = IBS[1];
This will make the IBS = zero (useful for zero oscillators)

Code: Select all

if Below <> 0 then
IBS = (Above/Below)
else
IBS = 0;
by TJ
04 Jun 2013
Forum: User Contributed Studies and Indicator Library
Topic: Internal Bar Strength (IBS)
Replies: 8
Views: 4774

Re: Internal Bar Strength (IBS)

OK, i try again: The problem is if the dominator result is a zero. I am not sure if it is correct coded? // Internal Bar Strength Indicator (IBS) // Source: http://qusma.com/2012/11/06/closing-price-in-relation-to-the-days-range-and-equity-index-mean-reversion/ vars: Above(0), Below(0), IBS(0); Abo...
by TJ
04 Jun 2013
Forum: User Contributed Studies and Indicator Library
Topic: Internal Bar Strength (IBS)
Replies: 8
Views: 4774

Re: Internal Bar Strength (IBS)

OK, i try again:
The problem is if the dominator result is a zero.
...
You have to decide the next logic:

What to do when the dominator is zero?

1. Do you make IBS the same value as the previous bar? (ie skip the calculation)
2. Make IBS = zero?
3. some other logic?
by TJ
04 Jun 2013
Forum: User Contributed Studies and Indicator Library
Topic: Internal Bar Strength (IBS)
Replies: 8
Views: 4774

Re: Internal Bar Strength (IBS)

If you have already tried, you should post your attempt and let the community help you to debug. Thank you TJ, OK lets try, this is my attempt: // Internal Bar Strength Indicator (IBS) // Source: http://qusma.com/2012/11/06/closing-price-in-relation-to-the-days-range-and-equity-index-mean-reversion...
by TJ
04 Jun 2013
Forum: User Contributed Studies and Indicator Library
Topic: Internal Bar Strength (IBS)
Replies: 8
Views: 4774

Re: Internal Bar Strength (IBS)

Dear Community Is this IBS-indicator already build in MC, maybe with another name? http://qusma.com/2012/11/06/closing-price-in-relation-to-the-days-range-and-equity-index-mean-reversion/ Can someone please code it as working indicator? I am a little confused because i always get an Error (division...
by TJ
03 Jun 2013
Forum: MultiCharts
Topic: Portfolio Trading
Replies: 47
Views: 20780

Re: Portfolio Trading

UPDATE REQUESTED

The first half of 2013 has passed.
...
???
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Problem While....Loop
Replies: 13
Views: 3433

Re: Problem While....Loop

HI TJ, Many Thks. I used your code but the result was the same. The first plot was shown on Aug 2006 but the data was start as of Dec 2003. Please find below is my print function. Print(" Symbol ", Symbol, " Date ", Date:7:0, "MyAvg" , MyAvg, "HIGH", HIGH ,"nEW ",nEW ); kam Of course the result is ...
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Problem While....Loop
Replies: 13
Views: 3433

Re: Problem While....Loop

HI TJ. The code is compiled. However, there is one thing that I don't quite understand. My data started from 2003 Dec 15 to 2013 June 02, the first plot was shown 2006 Aug 22. When I used the "Print" function; the first plot was show on 2003 Dec 29. This was totally confusing me. Those plot should ...
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Data1 and Data2 do not line up in Chart Window [SOLVED]
Replies: 9
Views: 6040

Re: Data1 and Data2 do not line up in Chart Window [SOLVED]

TJ

Thanks for your suggestion.
In the end I deleted ^VIX and reloaded the data from Yahoo again.
Magically it worked fine this time...
Not sure why or what I did
It is good to hear that all is well.
Thanks for the update. Good trading to you.
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Problem While....Loop
Replies: 13
Views: 3433

Re: Problem While....Loop

HI ..... Hope Someone could help me out .... thks Vars: Counter(1), NEW(0), MyAVG(0); MyAvg = Average(Close,3); Counter = 1 ; IF High > High[1] then WHILE low < MyAvg[Counter] BEGIN NEW = lOW[Counter]; Counter = Counter +1 ; PLot5(NEW, "XXX",RED); END; Can't help you just by looking at the codes. P...
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Problem While....Loop
Replies: 13
Views: 3433

Re: Problem While....Loop

this might be helpful:
All About Loops
viewtopic.php?f=16&t=7351
by TJ
02 Jun 2013
Forum: MultiCharts
Topic: Problem While....Loop
Replies: 13
Views: 3433

Re: Problem While....Loop

Post your code and let the community debug it for you.



How to post codes
viewtopic.php?f=16&t=11713
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

Holding a long and a short at the same time is called a ' wash trade ', which is illegal even if you use multiple accounts. For example, it is in violation of CME's trading rules: Very informative, thanks. What if you have two different strategies from two accounts but applied on the same instrumen...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Data1 and Data2 do not line up in Chart Window [SOLVED]
Replies: 9
Views: 6040

Re: Data1 and Data2 do not line up in Chart Window [SOLVED]

I have just made the same chart of the same instruments, my bars are lined up with no problem. I have experimented with different sessions, but the charts still line up. I don't know where your problem is; please delete the chart and try again to see if it makes a difference. Please check the comput...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

... How about multiple positions in the same direction then, like in scaling-in and scaling-out, let's say I have two outstanding open longs, and I'd like to use "setstoploss" and "setdollartrailing" to treat the two longs differently, anyway on how to do that? thanks, -k setstoploss and setdollart...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

You cannot have a long and a short position of the same instrument at the same broker with the same account at the same time. This is sad, it'd be helpful otherwise. Holding a long and a short at the same time is called a ' wash trade ', which is illegal even if you use multiple accounts . For exam...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

My question is, is it possible for functions such as "marketposition", "setstoploss", "setdollartrailing" etc to take an input string argument for different outstanding open positions (in the same or opposite directions) like: marketposition("position#1"); marketposition("position#2"); .... setstop...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

TJ, Would you kindly be more specific? which part in the wiki that these specific issues are addressed? I read thru the EL manuals and EL Functions and Reserved Words and wasn't able to find the answer. The online wiki contains pretty much the same material as the EL manual I read, for example, "ma...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Dealing with multiple positions of the same instrument in EL
Replies: 17
Views: 6132

Re: Dealing with multiple positions of the same instrument i

Hi, Wonder how you'd deal with multiple positions of the same instrument in EasyLanguage. Let's say, you go both long and short on the same instrument with buy("EL") and sellshort("ES"), no problem with that because "buy" and "sellshort" take a string as the entry name so they could be differentiat...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Data1 and Data2 do not line up in Chart Window [SOLVED]
Replies: 9
Views: 6040

Re: Data1 and Data2 do not line up in Chart Window [SOLVED]

Hi I have a graphing problem when displaying daily SPY as Data1 on top and ^VIX as Data2 below. When I do this, the OHLC bars do not line up (they are offset by 1 bar) and I see duplicated dates in the X Axis. I don't have this problem when displaying data from the same exchange. I thought this mig...
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Issues when plotting time resolutions off tick ASCII data
Replies: 3
Views: 2329

Re: Issues when plotting time resolutions off tick ASCII dat

Please show the time scale at the bottom of the screen shot.

Please attach ONLY the data of the referenced period. We can't wade through 4 MB of data to find your spot.
by TJ
01 Jun 2013
Forum: MultiCharts
Topic: Point & Figure Trading Strategy [SOLVED]
Replies: 2
Views: 5400

Re: Point & Figure Trading Strategy [SOLVED]

I'm interested in developing a PnF trading strategy. Does MC Powerlanguage have a way to determine the type of the current column? eg: if the current column is a down column, I want to put a buy order when a new up column is established. ie: if (currentcolumn is down) buy next bar at market. I've r...
by TJ
29 May 2013
Forum: MultiCharts
Topic: How to get a tick creation time?
Replies: 4
Views: 2660

Re: How to get a tick creation time?

Please see post #12
viewtopic.php?f=16&t=6929
by TJ
28 May 2013
Forum: MultiCharts
Topic: feature request - reversal bars
Replies: 3
Views: 2377

Re: feature request - reversal bars

Interesting analysis.

Do you have a sample chart?
by TJ
28 May 2013
Forum: MultiCharts
Topic: How to get a tick creation time?
Replies: 4
Views: 2660

Re: How to get a tick creation time?

the starting time of a tick bar is practically the end time of the previous tick bar.
by TJ
28 May 2013
Forum: MultiCharts
Topic: How to get a tick creation time?
Replies: 4
Views: 2660

Re: How to get a tick creation time?

Look up

Barstatus = 0
by TJ
26 May 2013
Forum: MultiCharts
Topic: The chart can't move,I don't know why? [SOLVED]
Replies: 1
Views: 2245

Re: The chart can't move,I don't know why? [SOLVED]

the other is correct
Has this happen before?

What is your chart's session times?

right click on chart,
Format Instrument > Settings > Chart Settings > Sessions:
by TJ
26 May 2013
Forum: MultiCharts
Topic: Creating an exchange [SOLVED]
Replies: 8
Views: 6277

Re: Creating an exchange [SOLVED]

I would suggest you to add what you need, instead of "all" of them. Because the way a database is designed, when you add a symbol to the QuoteManager, a data space is set aside for that symbol. Even if you are only planning to collect a small amount of data for a short period of time, the same space...
by TJ
26 May 2013
Forum: MultiCharts
Topic: Creating an exchange [SOLVED]
Replies: 8
Views: 6277

Re: Creating an exchange [SOLVED]

Hi, I'm trying to add the eSignal indexes to QuoteManager (Instrument -> Add Symbol -> From Data Source -> eSignal). I'm getting error: "You must create exchanges first: ADXI AMMI BAHI BOMI BOTI" I don't know what exchanges these abbreviations represent, so can't add them. I can't find any info on ...
by TJ
24 May 2013
Forum: MultiCharts
Topic: About Easylanguage and Powerlanguage
Replies: 3
Views: 2380

Re: About Easylanguage and Powerlanguage

Not speaking for MultiCharts... AFAIK, there is no patent on the EasyLanguage. To file for a patent, you have to prove your invention is technologically new and there is no "Prior Art" (Google it if you have never heard of this term). Most computer languages evolve from another. In EasyLanguage's ca...
by TJ
23 May 2013
Forum: MultiCharts
Topic: Arw_New_self_DT(date,114843257,1.2895,false); Not compile [SOLVED]
Replies: 5
Views: 3297

Re: Arw_New_self_DT(date,114843257,1.2895,false); Not compil [SOLVED]

TJ,

Amouseclick will be false

My understanding was that once an arrow was draw, it will be kept there forever or until manually kill from the chart. I realize now that it should be re-enabled on every pass.
...
the arw will be kept forever if the condition is true at the end of the bar.
by TJ
23 May 2013
Forum: MultiCharts
Topic: Arw_New_self_DT(date,114843257,1.2895,false); Not compile [SOLVED]
Replies: 5
Views: 3297

Re: Arw_New_self_DT(date,114843257,1.2895,false); Not compil [SOLVED]

Hi Martin, doesn't _DT mean that the reserved uses a datetime input? Which would mean you have one input for time and date only. Regards, ABC Good day Sir Problem half way resolved. Finally, I'm able to show an arrow at the position that I "Shift click "on the chart. Only problem, the arrow disappe...
by TJ
23 May 2013
Forum: MultiCharts
Topic: Is there a Characters replacement in a string function?
Replies: 2
Views: 2187

Re: Is there a Characters replacement in a string function?

Hello Is there a function to replace characters in a string. I need to remove ":" and the "." in a time string like 06:30:37.957 Martin Probably there is a function to do the trick; I haven't came across it yet. To remove the characters, you have to: 1. find out the length of the string, 2. run a l...
by TJ
23 May 2013
Forum: MultiCharts
Topic: Using MouseClick event to show arrow:
Replies: 3
Views: 2332

Re: Using MouseClick event to show arrow:

additional millisecond help:

viewtopic.php?f=16&t=18785
by TJ
23 May 2013
Forum: MultiCharts FAQ
Topic: [FAQ] Sub-Second and Non Time-Based Keywords
Replies: 2
Views: 6375

[FAQ] Sub-Second and Non Time-Based Keywords

Sub-Second keywords are introduced in MultiCharts 8.7 Beta1. Here is a list of these new keywords: Status line time in DateTime format - q_time_dt DateTime - time and date of the bar in Julian format. datetimetostring_ms MillisecondsFromDateTime - returns milliseconds values(0-999)for DateTime in J...
by TJ
23 May 2013
Forum: MultiCharts
Topic: Using MouseClick event to show arrow:
Replies: 3
Views: 2332

Re: Using MouseClick event to show arrow:

Hello using MC beta 7 and the time precision is to the millisecond. I'm using Tick Chart. Where is my error I want to use the mouse click event to show an arrow. From my code, arrow is not showed. I suspect because the time precision is not the millisecond. Martin if MouseClickshiftPressed then beg...
by TJ
22 May 2013
Forum: MultiCharts
Topic: Training for new MC users
Replies: 4
Views: 2625

Re: Training for new MC users

thank you but those tutorials are only about setting up data feeds etc. I want to see some tutorials on how to use all the functionality within Multicharts.. like a user manual
You can start here:

viewtopic.php?f=16&t=6929
by TJ
22 May 2013
Forum: MultiCharts
Topic: Training for new MC users
Replies: 4
Views: 2625

Re: Training for new MC users

I am new to MC and would like some recommendations on what online tutorials are available to show me how the software works and understand how to setup my charts and use the functions within MC
go to the top of the page,
look under the Support tab,
you will see the video tutorials.
by TJ
22 May 2013
Forum: User Contributed Studies and Indicator Library
Topic: Targets and stop with mouseclick
Replies: 7
Views: 4844

Re: Targets and stop with mouseclick

Code: Select all

begin
//Begin tracking after crtl + mouseclick
If MouseClickCtrlPressed then
BEGIN
StartTracking = 1;
print( "MouseClick");
END;
end;
by TJ
22 May 2013
Forum: User Contributed Studies and Indicator Library
Topic: Targets and stop with mouseclick
Replies: 7
Views: 4844

Re: Targets and stop with mouseclick: Function bug?

Hello SP Thanks for the code I did try it and was not lucky to have it work yet After the line 58 of your code, I added a print ("Mouse Click");. To my surprise, the print out is done even when no mouse click is done begin //Begin tracking after crtl + mouseclick If MouseClickCtrlPressed then Start...
by TJ
22 May 2013
Forum: MultiCharts
Topic: Multi timeframes Trading strategy
Replies: 2
Views: 2170

Re: Multi timeframes Trading strategy

Hi there I would like to use the same signal criteria on two different time frames, ie. 1 min and 10 min and when they are both true enter a trade, however I only got 1 min data in the database. Is there an easy way to accomplish this? thks Kam See post #4 https://www.multicharts.com/discussion/vie...
by TJ
22 May 2013
Forum: MultiCharts
Topic: Script - flatting the position in backtest [SOLVED]
Replies: 8
Views: 3166

Re: Script - flatting the position in backtest [SOLVED]

Hey guys, I'm new to MC and hv just encountered some problem in scripting, please help. let say if my buy signal triggered and currently holding 1 long contract, if i want to exit: 1. when high of current bar crossing var1, or 2. when low hits stoploss, if marketposition>0 then begin if high>var1 t...
by TJ
16 May 2013
Forum: MultiCharts
Topic: New to MC.. need help with couple questions
Replies: 4
Views: 1936

Re: New to MC.. need help with couple questions

but now if you set the plot as histogram, the histogram colors are incorrect.. in fact, any other plot type will be incorrect (points...etc) would it be possible to request this as a feature or a fix? for MC renderer to always evaluate the color of a connecting line between two points in a calculat...
by TJ
16 May 2013
Forum: MultiCharts
Topic: New to MC.. need help with couple questions
Replies: 4
Views: 1936

Re: New to MC.. need help with couple questions

Hi all, just starting my first steps with MC (scripting) - reaching out for help on couple of annoying issues that i'm facing, maybe i'm missing something and you can point me out to the right direction.. 1 - i'm scripting a custom indicator that plots an oscillator line with dynamic colors. so abo...
by TJ
14 May 2013
Forum: MultiCharts
Topic: Unstable Internet connection - Reload data automatically
Replies: 60
Views: 24985

Re: Unstable Internet connection - Reload data automatically

Type that into PowerLanguage and it won't compile. ...[/url]
Those are for Command Line use only. They cannot be use in the PowerLanguage Editor.

Update: Command line commands can be called from PowerLanguage code since MultiCharts 8.7 beta 1.
by TJ
14 May 2013
Forum: MultiCharts
Topic: Session template not applied to instrument [SOLVED]
Replies: 3
Views: 3219

Re: Session template not applied to instrument [SOLVED]

I have a strategy that I've applied to a daily chart that executes EOD. Unfortunately, in the case of this chart EOD = 23:59 and I'm an early to bed / early to rise kind of guy. I have tried several things to get the bars to close at 18:00 so I can backtest results with a more realistic execution t...
by TJ
14 May 2013
Forum: MultiCharts
Topic: problem generation order intrabar
Replies: 5
Views: 2265

Re: problem generation order intrabar

I can not generate orders long or short before the close of the candle .... what is wrong in [IntrabarOrderGeneration = True]; if marketposition=0 and (high>high[1]) and (close<open) then sellshort ("Sell") next bar at open ; This statement makes me start the Sell to a close of the candle . I want ...
by TJ
13 May 2013
Forum: MultiCharts
Topic: Export data
Replies: 6
Views: 3879

Re: Export data

Hi, I'm looking for a way to export many symbols' OHLC data to csv (Excel) format. The above link in this topic is to the home page of the User Contributed Studies forum rather than to the study itself. Rather than wade through all 22 pages of topics, can anyone post a link to the indicator referre...
by TJ
13 May 2013
Forum: MultiCharts FAQ
Topic: [FAQ] Autotrade / Backtest / Optimization
Replies: 23
Views: 39613

17) Results difference

[FAQ] Results difference for Backtest in Portfolio Backtester and MultiCharts

viewtopic.php?f=1&t=9794
by TJ
13 May 2013
Forum: MultiCharts
Topic: How can I set initial profit and stoploss range in PL? [SOLVED]
Replies: 4
Views: 2852

Re: How can I set initial profit and stoploss range in PL? [SOLVED]

alternatively you can code it like this:

Code: Select all

setprofittarget( profitrange * minmove * PointValue ); / set profit tick value
SetStopLoss( lossrange * minmove * PointValue ); / set stoploss tick value
by TJ
13 May 2013
Forum: MultiCharts
Topic: How can I set initial profit and stoploss range in PL? [SOLVED]
Replies: 4
Views: 2852

Re: How can I set initial profit and stoploss range in PL? [SOLVED]

ps. no need to apologise for your English; we are from all over the World.


ps. How to Post Codes
viewtopic.php?f=16&t=11713
by TJ
13 May 2013
Forum: MultiCharts
Topic: How can I set initial profit and stoploss range in PL? [SOLVED]
Replies: 4
Views: 2852

Re: How can I set initial profit and stoploss range in PL? [SOLVED]

Before I start, I have to apologize for my pool english. I want to set profit and loss in tick value as input statement and set them as initial profit and stoploss range. Can anyone please help me to finish the statement? inputs : profitrange(20), lossrange(10); / 20 ticks for profit and 10 ticks f...
by TJ
12 May 2013
Forum: MultiCharts
Topic: Multichart results different to portofio backtest results
Replies: 2
Views: 1820

Re: Multichart results different to portofio backtest result

(how do you simply load an image?)

Thank you,
Malcolm
Press the [Img] key at the top of the message window.



ps. I have edited your post to show the images.
by TJ
10 May 2013
Forum: MultiCharts
Topic: Multicharts on 1 PC and and IB TWS on another
Replies: 5
Views: 2503

Re: Multicharts on 1 PC and and IB TWS on another

I don't have IB installed on the computer I'm running MC on so I get the error: "Interactive Broker client software is not installed or incompatible. Please install latest version of client software." So do I need to install TWS on the same computer I have MC installed on even though I'm trading th...
by TJ
08 May 2013
Forum: MultiCharts
Topic: TrendLine created, not displayed [SOLVED]
Replies: 12
Views: 4362

Re: TrendLine created, not displayed [SOLVED]

a few more coding notes: once If barnumber =1 then begin You do not need to check if barnumber =1. ONCE is always executed once at the beginning. Value1=TL_SetExtRight(LineNumLow,True); // Extend to the right You do not need to assign to Value1. You assign to a variable only if you need to refer to ...
by TJ
08 May 2013
Forum: MultiCharts
Topic: TrendLine created, not displayed [SOLVED]
Replies: 12
Views: 4362

Re: TrendLine created, not displayed: Resolved??? [SOLVED]

Hello Jonathan / John .... I did not known that the Begin And End as to be in a special order Martin There is no rule to set the Begin and End in a special order, you only have to apply them in the logic you want. Computer is dumb; it only does things the way you instruct them to do. https://www.mu...
by TJ
08 May 2013
Forum: MultiCharts
Topic: TrendLine created, not displayed [SOLVED]
Replies: 12
Views: 4362

Re: TrendLine created, not displayed [SOLVED]

Hello I want to draw horizontal trendline to show the previous Day High & Day Low on my 250 Ticks chart.. The trend line does not appear on my chart and I don't know why ... Martin Try: tl_setbegin_s TL_SetEnd_s Thanks TJ, it resolved in part the problem Now, A trendline is visible, but not in an h...
by TJ
07 May 2013
Forum: MultiCharts
Topic: Plot Day and Night Sessions in Two Different Charts
Replies: 4
Views: 2518

Re: Plot Day and Night Sessions in Two Different Charts

Hi Folks,
...
Is there any trick to fillful what I need, i.e. plotting one chart for the day sessions only while plotting another chart for the day + night sessions?
Regards,
SA
There is no tricks... just make a new chart and plot whatever you like.
Give it a try and let us know how it looks.
by TJ
07 May 2013
Forum: MultiCharts
Topic: TrendLine created, not displayed [SOLVED]
Replies: 12
Views: 4362

Re: TrendLine created, not displayed [SOLVED]

Hello

I want to draw horizontal trendline to show the previous Day High & Day Low on my 250 Ticks chart.. The trend line does not appear on my chart and I don't know why
...
Martin
Try:

tl_setbegin_s
TL_SetEnd_s
by TJ
07 May 2013
Forum: MultiCharts
Topic: TrendLine created, not displayed [SOLVED]
Replies: 12
Views: 4362

Re: TrendLine created, not displayed [SOLVED]

My charts have all sorts of trendlines and arrows and texts on them. I have used all kinds of methods to draw them, move them, delete them, hide them, resurrect them, changing attributes, etc., I have pretty well tested all coding permutations, and satisfied that there is no bugs in MultiCharts draw...
by TJ
06 May 2013
Forum: MultiCharts
Topic: Font Size [SOLVED]
Replies: 2
Views: 2369

Re: Font Size [SOLVED]

I want to specify the size for text in an indicator using easylanguage. I know how specify where to put it and what colour it should be but cannot find how to change the size of the text. Is there a reserved word? Look under PowerLanguage Keyword Reference > Text Drawing https://www.multicharts.com...
by TJ
06 May 2013
Forum: MultiCharts
Topic: PL - Barssince [SOLVED]
Replies: 4
Views: 2882

Re: PL - Barssince [SOLVED]

Hi I have a problem with a Study where I'm trying to identify the number of bars since the last time price closed below an exponential moving average. I only get the total number of bars in the dataset as result of the study. .... I managed to get it right when the study aimed to identify the numbe...
by TJ
04 May 2013
Forum: MultiCharts
Topic: Big Point value incorrect for some futures contracts [SOLVED]
Replies: 4
Views: 3964

Re: Big Point value incorrect for some futures contracts [SOLVED]

It looks as though for some futures contracts the big point value is defaulting to 1. I realize I can go into the quote manager and manually change it. The current settings for the symbols is to use the "Exchange & ECN settings". QCL# for example is properly showing a big point value of 1000, but Q...
by TJ
02 May 2013
Forum: MultiCharts
Topic: Forcing data1 to calculate when data2 does not refresh
Replies: 5
Views: 2203

Re: Forcing data1 to calculate when data2 does not refresh

Here is an annotated screenshot with simplified demo code and workspace attached as well. The screenshot illustrates the post-market session today, but exactly the same problem occurs in premarket; the indicator simply refuses to calculate until the market opens, at which time all the intervening v...
by TJ
02 May 2013
Forum: MultiCharts
Topic: Forcing data1 to calculate when data2 does not refresh
Replies: 5
Views: 2203

Re: Forcing data1 to calculate when data2 does not refresh

I run my most of my charts on stocks with all sessions (eg 24/7) data as 5 min bars in data 1, and regular session (ie default) data as 5 min bars in data 2. My study calculates some exponential averages(among other things) on data 1 and some on data2. During regular session (from 9:30 to 4:00 New ...
by TJ
01 May 2013
Forum: MultiCharts
Topic: Quote Manager Database Transfer [SOLVED]
Replies: 1
Views: 1855

Re: Quote Manager Database Transfer [SOLVED]

Hi, I have download many contract data into PC1 and I would like to trade at PC2 because the performance is better. May I copy QM database from PC1 to PC2? Thanks! See post #2 [FAQ] All About User Data -- database/studies/workspaces/logs https://www.multicharts.com/discussion/viewtopic.php?f=16&t=6...
by TJ
30 Apr 2013
Forum: MultiCharts
Topic: Multi Charts disposition: Could we do that [SOLVED]
Replies: 3
Views: 2468

Re: Multi Charts disposition: Could we do that [SOLVED]

Hello I was listening to a webminar. The instructor was working with TS. I took a snap picture of his workspace. On the left a scanner window with all the instruments that he is following. All the charts displayed on the worskpace is is of the same instrument selected on the scanner. From weekly to...
by TJ
29 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: templates
Replies: 8
Views: 4474

Re: templates

Hi TJ, I have narrowed it down to this code: ... The error code I get when trrying to compile it is this: Study: "Seb 2" (Indicator) Please wait .... ------ Compiled with error(s): ------ Compile error errLine 0, errColumn 0, errLineEnd 0, errColumnEnd 0 causal study: (Function) Thank you in advanc...
by TJ
29 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: templates
Replies: 8
Views: 4474

Re: templates

Hi TJ, I have narrowed it down to this code: Inputs: UpColor (red), DnColor (green), UnCngColor (yellow); Variables: BarColor (0); If High < High[1] and Low < Low[1] then BarColor = UpColor //red else If High > High[1] and Low > Low[1] then BarColor = DnColor //green else BarColor = UnCngColor; Plo...
by TJ
29 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: templates
Replies: 8
Views: 4474

Re: templates

here's the code you should be compiling, nothing more. Inputs: UpColor (red), DnColor (green), UnCngColor (yellow); Variables: BarColor (0); If Close > Close[1] and Low > Low[1] and Close < High[1] and Close <= (High+Low)/2 then BarColor = UpColor //red else If Close[1] > Open[1] and Close < High[1]...
by TJ
29 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: templates
Replies: 8
Views: 4474

Re: templates

Hi TJ, and thanks for your reply, here is some code, I do not seem to be able to compile it. ... I have compiled the code with no problem. You must have included the non-codes into the indicator. Please copy and paste (or screenshot) the error message here. We cannot help you without the error mess...
by TJ
29 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: templates
Replies: 8
Views: 4474

Re: templates

Hello coders. I have a request, I would like someone to post a paint-bar template so I can modify it to test out a theory please, and I would like to base it on price bars as in close > close -1 etc on up and down bars. And cheeky I know, but another the same so I can add red and green dots underne...
by TJ
27 Apr 2013
Forum: MultiCharts
Topic: Time delayed trades
Replies: 1
Views: 1567

Re: Time delayed trades

Does anyone use a strategy which stops trades being placed within a certain time of each other where the time is not related to the bar interval being used for the signal? eg i use 1 hour bars for my signal but want to avoid trades being placed within 5 minutes of each other. Thanks. you can do tha...
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

Sorry to ask you again but If I am trading from 7AM to 1PM for example, would those inputs that start at 9 am still be useful? I am trying to understand the relations between a user trading time preferences and the Vwap inputs. Whoever wrote the codes must have had a reason why he/she used those Ti...
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

I did not have it on mine; maybe they are included in the latest build. You can do a google search, there are lots of write up on the web. As far as I remember that study is in MC a couple of years now. Which build are you working on TJ? 6.0? :P I would love to know what was the intention when that...
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

Thanks TJ
The code is from Multichart Power Language library by the way.
Indicators section, fifth from the bottom.
I did not have it on mine; maybe they are included in the latest build.
You can do a google search, there are lots of write up on the web.
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

Sorry to ask you again but If I am trading from 7AM to 1PM for example, would those inputs that start at 9 am still be useful? I am trying to understand the relations between a user trading time preferences and the Vwap inputs. Whoever wrote the codes must have had a reason why he/she used those Ti...
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

1. please see link on how to post codes.

2. You can change the time to anything you want. It is an input variable, you can plug in whatever number you feel is suitable for you.
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: VWAP Indicator
Replies: 14
Views: 7009

Re: VWAP Indicator

Does anyone know why the default Time inputs in the VWAP indicator are set as follows? Time1 0900 Time2 0930 Time3 1129 Time4 1315 Time5 1415 Thank you Which vwap indicator you are referring to? There are various versions floating on the web. Please always include a link, or copy and paste the code...
by TJ
26 Apr 2013
Forum: MultiCharts
Topic: Message: Your PC is running out of memory few questions: [SOLVED]
Replies: 28
Views: 12903

Re: Message: Your PC is running out of memory few questions: [SOLVED]

(...) From my read, your computer appears running normal. You will definitely need more than 4 GB to run today's computers. (newer Windows put the disk index on RAM, which takes up a lot of memory.) The memory usage of ~5GB is normal. (...) I don't think a memory usage of ~5GB is normal. I'm using ...
by TJ
25 Apr 2013
Forum: MultiCharts
Topic: AA mode and setstoploss order [SOLVED]
Replies: 4
Views: 2237

Re: AA mode and setstoploss order [SOLVED]

Hi thanks for the reply. ... My other question was regarding a scenario analysis of whether or not setstoploss can be triggered if I'm flat at the broker. Trivial questions I'm sure. Would be very grateful for a trivial answer. see post #5 [FAQ] OCO Orders https://www.multicharts.com/discussion/vie...
by TJ
23 Apr 2013
Forum: MultiCharts
Topic: What is the function to get the price of a pivot low [SOLVED]
Replies: 2
Views: 1494

Re: What is the function to get the price of a pivot low [SOLVED]

Hello

I'm may be tired, but I just can't remenber what is the function that I used before to get the price of a pivot low ( or high)

Martin :)
Look under function name that starts with "pivot"; there are a few with various capabilities.
by TJ
22 Apr 2013
Forum: MultiCharts
Topic: Count the historical crossovers of Moving Average Possible?
Replies: 5
Views: 2040

Re: Count the historical crossovers of Moving Average Possib

Thanks. That actually makes sense (i think!). But just in trying to understand the (reverse?) logic of what I am trying to do then in 'looking forward, or, counting as I go ... Doesn't that mean i need to have some sort of rolling/dynamic variable? Not only do I need to then store the result for ev...
by TJ
22 Apr 2013
Forum: MultiCharts
Topic: Count the historical crossovers of Moving Average Possible?
Replies: 5
Views: 2040

Re: Count the historical crossovers of Moving Average Possib

Instead of "look back", try to think in terms of "look forward". When the moving averages cross over, immediately capture the date/time value and save it to a variable. When you arrived at the point that you need to know the amount of times a moving average has crossed over itself, simply recall the...
by TJ
21 Apr 2013
Forum: MultiCharts
Topic: Hiding Objects [SOLVED]
Replies: 5
Views: 1970

Re: Hiding Objects [SOLVED]

Those are drawing objects, you cannot hide them through settings. You have to remove them from your code. (or to make your code user configurable for show/no show). I'm not using any code, I'm merely using the default built in objects in MC and was wanting to hide certain objects from certain time ...
by TJ
21 Apr 2013
Forum: MultiCharts
Topic: Hiding Objects [SOLVED]
Replies: 5
Views: 1970

Re: Hiding Objects [SOLVED]

Is it possible to hide certain chart objects from specific TF's for example my M5 TF SR's hidden from M30 to create cleaner charts. right click on chart, a " Format Objects " window will pop up, select " Format Indicators " choose the indicator, press the " Format " button. The " Format Study " win...
by TJ
21 Apr 2013
Forum: MultiCharts
Topic: Hiding Objects [SOLVED]
Replies: 5
Views: 1970

Re: Hiding Objects [SOLVED]

Is it possible to hide certain chart objects from specific TF's for example my M5 TF SR's hidden from M30 to create cleaner charts. right click on chart, a " Format Objects " window will pop up, select " Format Indicators " choose the indicator, press the " Format " button. The " Format Study " win...
by TJ
20 Apr 2013
Forum: MultiCharts
Topic: ADE and receiving data from Range Bars
Replies: 6
Views: 3732

Re: ADE and receiving data from Range Bars

When I follow your instructions I get an ADE error: "Unsupported ADE interval code: 3". Any solutions to this? Thanks.
Have you installed the TypeZero Library?

You can get it here:
http://www.tradersxchange.com/viewtopic.php?f=49&t=4
by TJ
20 Apr 2013
Forum: MultiCharts
Topic: Tradestaion's Easy Language Home study course
Replies: 1
Views: 2700

Re: Tradestaion's Easy Language Home study course

I would like to spend some time trying to get better at easy language so I can program some simple indies and strategies. I do have the materials that have been listed in many of the posts however, I ran across a home study course by TS that I found on Amazon. Is anyone familiar with the course and...
by TJ
20 Apr 2013
Forum: MultiCharts
Topic: MultiCharts 8.5 User manual PDF version
Replies: 3
Views: 2049

Re: MultiCharts 8.5 User manual PDF version

MultiChart Support, I was hoping that there is a User manual PDF version available, if not can you send me the last Pdf version that you have available. Going on a long flight would like to read and review the software, since I'm a new user to your software. Thank You Frank K If you go to the follo...
by TJ
19 Apr 2013
Forum: MultiCharts
Topic: MultiCharts 8.5 User manual PDF version
Replies: 3
Views: 2049

Re: MultiCharts 8.5 User manual PDF version

MultiChart Support, I was hoping that there is a User manual PDF version available, if not can you send me the last Pdf version that you have available. Going on a long flight would like to read and review the software, since I'm a new user to your software. Thank You Frank K If you go to the follo...
by TJ
16 Apr 2013
Forum: MultiCharts
Topic: Swing High Low on Price
Replies: 2
Views: 2022

Re: Swing High Low on Price

Hi there,

I am new to multichart. Highly appreciated that if someone could walk me though about how to build a swing point.
What do you mean by "swing point"?
by TJ
16 Apr 2013
Forum: MultiCharts
Topic: Where Are the Kase Bars?
Replies: 15
Views: 3949

Re: Where Are the Kase Bars?

I am new to MultiCharts ~ is there anyway to have Kase Bars as a bar type?

I have been unable to find...
Kase bars = range bars.
by TJ
14 Apr 2013
Forum: MultiCharts
Topic: Wrong candlestick???
Replies: 8
Views: 2047

Re: Wrong candlestick???

Sorry... I ran out of ideas.
by TJ
14 Apr 2013
Forum: MultiCharts
Topic: Wrong candlestick???
Replies: 8
Views: 2047

Re: Wrong candlestick???

Check the time zone you have set for your computer.
by TJ
14 Apr 2013
Forum: MultiCharts
Topic: Wrong candlestick???
Replies: 8
Views: 2047

Re: Wrong candlestick???

My chart works ok...

can you post your chart settings?


Image
by TJ
14 Apr 2013
Forum: MultiCharts
Topic: Wrong candlestick???
Replies: 8
Views: 2047

Re: Wrong candlestick???

have you tried reloading the chart?
by TJ
12 Apr 2013
Forum: User Contributed Studies and Indicator Library
Topic: plot open and close on two or more data series
Replies: 2
Views: 2466

Re: plot open and close on two or more data series

The charts are too small; can't see what is going on.
You have to write some notes on the chart to tell us what we are looking at; what is right, and what is wrong. An arrow does not mean much.
You should make a mock up to show what your indicator should produce.
by TJ
12 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

Lots of examples here;
just plug the keyword in the search box at the top right corner and presto!
by TJ
12 Apr 2013
Forum: MultiCharts
Topic: Performance issue [SOLVED]
Replies: 16
Views: 4529

Re: Performance issue [SOLVED]

Hello, Just to close this issue, I wanted to confirm that replacing the Arw_GetActive by a variable did indeed solve the performance issue I was facing. I was already using variables for trendlines and other texts, but not for arrows. The Arw_GetActive which is mentionned on MC support page proved ...
by TJ
11 Apr 2013
Forum: MultiCharts
Topic: How to Improve Autotrading
Replies: 3
Views: 1290

Re: How to Improve Autotrading

Thanks TJ. The idea behind the signal linking is to make the whole process faster and smoother and to get away from coding/debugging when possible. Update: Oops, I deleted TJ post by accident. Do you mean "Strategy" linking? I know the terms are confusing, both "Strategy" and "Signal" have been use...
by TJ
11 Apr 2013
Forum: MultiCharts
Topic: ELD Floating Point Error (TS vs MC)
Replies: 9
Views: 2969

Re: ELD Floating Point Error (TS vs MC)

Henry, I have already reviewed that link but really have no idea how to implement it in my code... like TS, there are really no good examples of how to implement the code for the neophyte like myself. Can you give an example of how and where to place in indicator code? Also, there is only one divis...
by TJ
11 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

Sorry to be a drone on this one subject, but I now realize that there is another facet to the EOD exit issues I was experiencing on tick charts. Call me slow, but I finally realized that when using statements like: if currenttime_s >= 160000 then sell currentshares this bar; or, if time_s >= 160000...
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

I just added that yesterday while throwing ideas at the wall. It is redundant I guess.
"Once" means to perform the task ONCE and never to do it again.

If your chart has 100 days on it,
that snippet of code will be performed on the 1st day and never again.
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

why do you have "once" in your code?

Code: Select all

if GetAppinfo(aiRealTimeCalc) = 1 and Currenttime_s >= EndTime then once begin
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Performance issue [SOLVED]
Replies: 16
Views: 4529

Re: Performance issue [SOLVED]

This manual has detailed explanation and code examples on how to create and manipulate drawing objects:

EasyLanguage Essentials Programmers Guide
Drawing Objects.... pg 112
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Performance issue [SOLVED]
Replies: 16
Views: 4529

Re: Performance issue [SOLVED]

I am using the "Arw_New_self_s" for each new arrow, the benefit of it being that I can then visualize each entry and visually assess its potential. The code for the arrow is as follow: if ViewArrow and not SqueezeDown[1] and (h < h[1])then begin Value1 = Arw_New_self_s(Date, Time_s, var1[1], True);...
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Performance issue [SOLVED]
Replies: 16
Views: 4529

Re: Performance issue [SOLVED]

I am using the "Arw_New_self_s" for each new arrow, the benefit of it being that I can then visualize each entry and visually assess its potential. The code for the arrow is as follow: if ViewArrow and not SqueezeDown[1] and (h < h[1])then begin Value1 = Arw_New_self_s(Date, Time_s, var1[1], True);...
by TJ
10 Apr 2013
Forum: MultiCharts
Topic: Performance issue [SOLVED]
Replies: 16
Views: 4529

Re: Performance issue [SOLVED]

MC_Perf_Graph.PNG Yes, performance went back to normal when all indicators were turned off. Yes, my indicators keep plotting new arrows or daily lines, with the exception of one which updates itself. I have attached the requested snapshot. The most likely problem is due to an error in your code; in...
by TJ
09 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

Ahhhhhh.

Makes sense. Thank you, swami.
yw
by TJ
09 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

... Also, the backtest mode EOD exit code I've been using for years no longer works properly (it leaves the position open). I'm assuming this is also because tick bars are not likely to hit at exactly 16:00, 16:15 or whenever.[/list] I'd appreciate any thoughts if anybody has had similar issues in ...
by TJ
09 Apr 2013
Forum: MultiCharts
Topic: Trendlines and text misbehave on tick charts
Replies: 17
Views: 3926

Re: Trendlines and text misbehave on tick charts

I've got a strategy that also plots fib levels, entry, stop, target, etc. trendlines on the chart so I can see what it's thinking. It was originally developed for use on minute charts, but I recently discovered that its results are better when I use it on a tick chart. As designed, on the minute ch...
by TJ
09 Apr 2013
Forum: MultiCharts
Topic: pivots
Replies: 3
Views: 1256

Re: pivots

Why doesnt MC have a decent pivot indicator ?
are there any out there ?

thanks

shane
try here:

look under
Pivots, Levels, Support & Resistence
http://www.tradersxchange.com/
by TJ
04 Apr 2013
Forum: MultiCharts
Topic: Message: Your PC is running out of memory few questions: [SOLVED]
Replies: 28
Views: 12903

Re: Message: Your PC is running out of memory few questions: [SOLVED]

this is mine...
Windows vista 64 home premium
Intel Q6600 8GB
Multicharts64
2 instances, 7 wsp, 14 charts, lots of indicators and drawing objects

You can see the usage is about the same

Image
by TJ
04 Apr 2013
Forum: MultiCharts
Topic: Better Renko - Mean Renko - Renko Hybrid - Own bar types
Replies: 17
Views: 12364

Re: Better Renko - Mean Renko - Renko Hybrid - Own bar types

Are there any plans to implement the new renko bar styles that are available for other platforms in the near future in MC or the creation of own bar types? Can it be done in the MC.Net Version? You should be more specific on what you are expecting. Do you have a sample chart? What is the drawing lo...
by TJ
04 Apr 2013
Forum: MultiCharts
Topic: Message: Your PC is running out of memory few questions: [SOLVED]
Replies: 28
Views: 12903

Re: Message: Your PC is running out of memory few questions: [SOLVED]

Can you get a screen shot of the "Performance" tab. (the whole window, not just the upper graph) From my read, your computer appears running normal. You will definitely need more than 4 GB to run today's computers. (newer Windows put the disk index on RAM, which takes up a lot of memory.) The memory...
by TJ
03 Apr 2013
Forum: MultiCharts
Topic: Chart not loading?
Replies: 1
Views: 1112

Re: Chart not loading?

I have installed multicharts 8.5 and setup my broker profile for zenfire and for the quote manager, but when i try to create a new chart it will not load up. Any help will be appreciated. How did you add your symbol? What symbol did you try to load? For what type of chart? For how much back data? h...
by TJ
02 Apr 2013
Forum: MultiCharts
Topic: Message: Your PC is running out of memory few questions: [SOLVED]
Replies: 28
Views: 12903

Re: Message: Your PC is running out of memory few questions: [SOLVED]

I have 10 workspaces open, with 4 windows/workspace and 4 studies on each and I have no trouble with memory..(MC64)...3.0gig quad core..Win7..8 gig ram.. Their problem is with MC32 . You are using MultiCharts64, you will never have memory problem. Maybe you guys could help me out. I have a similar ...
by TJ
31 Mar 2013
Forum: MultiCharts
Topic: GlobalDictionary to GlobalVariable
Replies: 2
Views: 1465

Re: GlobalDictionary to GlobalVariable

GlobalVariable is automatically installed into your computer during the MultiCharts installation process. There is nothing to add to activate the feature.

For GlobalVariable documents and usage examples,
please do a search of "GlobalVariable" and "GlobalVariables" on this forum.
by TJ
31 Mar 2013
Forum: MultiCharts
Topic: GlobalDictionary to GlobalVariable
Replies: 2
Views: 1465

Re: GlobalDictionary to GlobalVariable

GlobalVariable comes installed with Multicharts. It is available in both 32 bit and 64 bit versions.
by TJ
30 Mar 2013
Forum: MultiCharts
Topic: Strategy buy first day of the month [SOLVED]
Replies: 9
Views: 5251

Re: Strategy buy first day of the month [SOLVED]

thanks guys for the support I solved with this formula and it works If Month(Date) <> Month(Date[1])then begin If ((dayofmonth(date)=1)or(dayofmonth(date)=2)or(dayofmonth(date)=3)or (dayofmonth(date)=4)or(dayofmonth(date)=5)) then buy this bar at close; end; Thanks for sharing your code. An easier ...
by TJ
29 Mar 2013
Forum: MultiCharts
Topic: NT trader indicator translated to EL - d9 Haar Wavelet
Replies: 4
Views: 3158

Re: NT trader indicator translated to easylanguage

Hi @, I found this indicator below on the NT forum, and I'm trying to convert this to easylanguage, but my C# knowledge is very poor. Can this be done? Or can it only be done in easylanguage via a dll? The OnBarUpdate part is the actual haar wavelet lifting, right? Thanks, Simon [/code] It would he...
by TJ
27 Mar 2013
Forum: MultiCharts
Topic: Strategy buy first day of the month [SOLVED]
Replies: 9
Views: 5251

Re: Strategy buy first day of the month [SOLVED]

thanks fury, I tried so but skips a few months Input: MyStopLoss(1100); If Month(Date) <> Month(Date[1])then begin If dayofmonth(date)=1 then buy this bar at close; end; setexitonclose; setstoploss(MyStopLoss); ps. see post #7 [FAQ] This Bar on Close https://www.multicharts.com/discussion/viewtopic...
by TJ
27 Mar 2013
Forum: MultiCharts
Topic: No-gap range bars.
Replies: 12
Views: 8721

Re: No-gap range bars.

It would help if you can cite a reference of the "No-gap range bar" where the specifications (logic) are detailed.

It would help also if you can post a chart sample.
by TJ
27 Mar 2013
Forum: MultiCharts
Topic: Strategy buy first day of the month [SOLVED]
Replies: 9
Views: 5251

Re: Strategy buy first day of the month [SOLVED]

how can I write a formula that buy in opening the first day of every month? i have writhe this but don't work well Input: MyStopLoss(1100); If dayofmonth(date)=1 and CloseM(1) < OpenM(0) then buy this bar at close; setexitonclose; setstoploss(MyStopLoss); Which months are missing? Can you clarify, ...
by TJ
26 Mar 2013
Forum: MultiCharts
Topic: How to keep alive a Limit order till filled [SOLVED]
Replies: 9
Views: 3664

Re: How to keep alive a Limit order till filled [SOLVED]

So IOG is only for Market orders, not for Limit/Stop orders ? This means limit/stop orders are submitted only at the end of the current bar and not after every tick ? This is the basic code I tested with the results I told you in first message. I would like the buy or sell limit order stands till f...
by TJ
26 Mar 2013
Forum: MultiCharts
Topic: How to keep alive a Limit order till filled [SOLVED]
Replies: 9
Views: 3664

Re: How to keep alive a Limit order till filled [SOLVED]

I would separate the logic from the order: eg. //[IntrabarOrderGeneration=true] Inputs: vTick(0.002); // Tick value var: BuySell(0); // Buy = 1, Sell = -1 // --- Logic --- if (LastBarOnChart_s and MarketPosition_at_Broker=0 and close>high[1]+vTick) then BuySell = 1 // buy logic else if (LastBarOnCha...
by TJ
26 Mar 2013
Forum: MultiCharts
Topic: How to keep alive a Limit order till filled [SOLVED]
Replies: 9
Views: 3664

Re: How to keep alive a Limit order till filled [SOLVED]

Hi Tj, sorry I am not able to understand your answer. Please be more specific, possibly with a code example ! I'm trying to understand the logic of MC with Limit-Stop orders. And I would like to keep a single limit order alive till filled, without having it cancelled and resubmitted on every 1 minu...
by TJ
25 Mar 2013
Forum: MultiCharts
Topic: How to keep alive a Limit order till filled [SOLVED]
Replies: 9
Views: 3664

Re: How to keep alive a Limit order till filled [SOLVED]

> How can I keep the limit order alive for more 1 minute bars without make it cancelled and resubmitted ?


make your logic true for more than the 1 minute bar, your order will remain alive until you make the condition "not true".
by TJ
20 Mar 2013
Forum: MultiCharts
Topic: Slow Charting Tick-Chart
Replies: 8
Views: 2791

Re: Slow Charting Tick-Chart

The MC-Charting in MC 8.x 64 bit is in busy moments very slow. Sometimes if the stock is traded busy ( more than 3 trades per second in the stock) there is a delay up to 3 seconds until MC is charting the price. This is very bad during scalping. I noticed this during 1 Tickchart, and also with 5 Ti...
by TJ
20 Mar 2013
Forum: MultiCharts
Topic: Studies not work with second bars [SOLVED]
Replies: 8
Views: 2484

Re: Studies not work with second bars [SOLVED]

Hi, thank you both for your kind replies, they helped me understanding the issue. It has to do with the data feed, in this case Int. Broker. Settings are correct in terms of Backfilling but with IB, if I use a back histrory bigger than 40 days than the calculation becomes too complex and the study ...
by TJ
20 Mar 2013
Forum: MultiCharts
Topic: Need Help on floating point error during Optimization [SOLVED]
Replies: 5
Views: 2659

Re: Need Help on floating point error during Optimization [SOLVED]

Hi Guys, I'm having trouble understanding what i'm doing wrong here. I have a simple code which basically gives the crossover point between 2 moving averages. This doesn't give any errors compiling or placing in a strat. However, it does give optimization errors when I try to optimize 2 of the movi...
by TJ
19 Mar 2013
Forum: MultiCharts
Topic: Check if Auto Trading Turned On
Replies: 1
Views: 1403

Re: Check if Auto Trading Turned On

Is there any way in PowerLanguage to check if Auto Trading is turned on or not?

Thanks.
Go to Wiki (link at the top under Support tab)

Search for GetAppInfo

See section on aiStrategyAuto
by TJ
19 Mar 2013
Forum: MultiCharts
Topic: Studies not work with second bars [SOLVED]
Replies: 8
Views: 2484

Re: Studies not work with second bars [SOLVED]

Hi, I am new to MC and I searched on the subject before posting this one. Quick question. Studies seem to not work with second bars. i.e 10 or even 30 sec timeframes. Why is that? Thank you in advance. Who is your data supplier? How far back history are you loading? It is possible you do not have e...
by TJ
16 Mar 2013
Forum: MultiCharts
Topic: Plots in Signals ? [SOLVED]
Replies: 7
Views: 3588

Re: Plots in Signals ? [SOLVED]

You have it correct, you cannot plot in signals, but using drawing objects is ok.
by TJ
16 Mar 2013
Forum: MultiCharts
Topic: Time frame Setting Problem!
Replies: 2
Views: 1235

Re: Time frame Setting Problem!

When I try to set the time frame as 15 minutes, the time of each bar in the chart is not like "10:00:00,10:15:00,10:30:00,...", but is like "10:10:00,10:25:00,10:40:00,...", which is rather stupid. Does anyone have any idea for this problem? I am using MultiCharts64 Version 8.5 Release (Build 6851)...
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Last order time [SOLVED]
Replies: 5
Views: 2072

Re: Last order time [SOLVED]

is there any way to reference the current exchange time or the time shown on the chart as opposed to the end of bar time or computer time?
Unfortunately, there is no keyword for exchange time.
You can always use currenttime plus an adjustment.
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Last order time [SOLVED]
Replies: 5
Views: 2072

Re: Last order time [SOLVED]

I have the following code. This works fine to place orders during the day but it doesnt place a closing trade at end of day (3.56pm) as it should. Instead it places closing trades at 3pm. Im sure this has something to do with me using 1 hours bars. It seems to think the start of the last bar, which...
by TJ
15 Mar 2013
Forum: User Contributed Studies and Indicator Library
Topic: ADE, ELcollections, and GlobalVariables
Replies: 43
Views: 85097

Re: Installing ADE/Elcollections in MC

Hi csharpstudent
...
I am curious. Does cSharp mean you are a music student or just a sharp student?

John
or a C# programming student?
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Displaying a diamond over a bar
Replies: 26
Views: 8426

Re: Displaying a diamond over a bar

I think i have no change. It doesn´t running.

Here is my code:
Best regards
Kinko
Please start here:

EasyLanguage Essentials Programmers Guide
Text Objects.... pg 112

https://www.multicharts.com/multicharts ... mentation/
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Displaying a diamond over a bar
Replies: 26
Views: 8426

Re: Displaying a diamond over a bar

Yes, so i try this:

Code: Select all

if RSi > 40 then
Plot Text_GetFontName(3);
But it doesn´t create s symbol in the Chart.
Best Regards
Kinko
Please read the information on that page carefully.

Please refer to post #2.
Please refer to post #8 AGAIN.
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Displaying a diamond over a bar
Replies: 26
Views: 8426

Re: Displaying a diamond over a bar

Hello TJ,

i think you mean this.

But i don´t know, how i can plot it in the Chart, excuse me. :-)

Best reagrds
Kinko
Yes, you have the right page.

Did you read any of the links on the page?
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Displaying a diamond over a bar
Replies: 26
Views: 8426

Re: Displaying a diamond over a bar

Hello TJ,

thank you. But how can i plot the diamond to the Chart?

Can you give me an example?

If... then plot ???

Greats
Kinko
At MultiCharts,
Press [F1], do a search for Text_SetFontName.
Usage example is there.

You replace whatever alphabetic character with the mapping.
by TJ
15 Mar 2013
Forum: MultiCharts
Topic: Displaying a diamond over a bar
Replies: 26
Views: 8426

Re: Displaying a diamond over a bar

Hello,

has anyone the PDF for download? The link is defect.

Best regards
Kinko
please do a google search for

wingdings character map
by TJ
14 Mar 2013
Forum: MultiCharts
Topic: FX Point value problem with different data feed [SOLVED]
Replies: 4
Views: 1994

Re: FX Point value problem with different data feed [SOLVED]

All the strategy calculations are done on the chart. When your strategy triggers an order, the order is submitted to your broker as follows: 1. order type -- Buy, sell, limit, market or stop, etc., 2. price 3. quantity 4. order in effect -- day order? GTC? etc., Your strategy does not know, and does...
by TJ
14 Mar 2013
Forum: MultiCharts
Topic: FX Point value problem with different data feed [SOLVED]
Replies: 4
Views: 1994

Re: FX Point value problem with different data feed [SOLVED]

Your strategy calculation is based on your chart.
by TJ
14 Mar 2013
Forum: MultiCharts
Topic: Mb Trading FOREX: Account temporarily unavailable [SOLVED]
Replies: 71
Views: 22110

Re: Mb Trading FOREX: Account temporarily unavailable [SOLVED]

That's right... Don't auto trade unattended. Even the big trading/investment houses do not autotrade unattended, and they have professional programmers and fault-tolerant computers and redundant internet, remote cellphone alert, remote wake up, and artificial intelligent strategies. Most retail trad...
by TJ
14 Mar 2013
Forum: MultiCharts
Topic: Changing/Overwriting an already plotted/calculated plot [SOLVED]
Replies: 5
Views: 1836

Re: Changing/Overwriting an already plotted/calculated plot [SOLVED]

Just a follow up question: Changing the plot as you showed with e.g. Plot[1] (100) ... that only changes the value visually on the chart, doesn't it? Correct. I am also showing the values of the above code/plots in a Watch-list screen. It seems though the Watch-list value of the Plot is showing the...
by TJ
13 Mar 2013
Forum: MultiCharts
Topic: Daily and Weekly Bar Construction
Replies: 5
Views: 1573

Re: Daily and Weekly Bar Construction

How are daily and weekly bars constructed in multicharts? From what I can see, daily bars completely ignore the specified session template. Why is this?
Any particular instruments you are referring to?
by TJ
12 Mar 2013
Forum: MultiCharts
Topic: Changing/Overwriting an already plotted/calculated plot [SOLVED]
Replies: 5
Views: 1836

Re: Changing/Overwriting an already plotted/calculated plot [SOLVED]

You my friend are a genius!

That was such an easy solution!!! (makes me kinda embarrassed) .... but to us lesser mortals, it was no less brilliant a solution.

thanks!
You are welcome. Enjoy!
by TJ
12 Mar 2013
Forum: MultiCharts
Topic: Changing/Overwriting an already plotted/calculated plot [SOLVED]
Replies: 5
Views: 1836

Re: Changing/Overwriting an already plotted/calculated plot [SOLVED]

Hi All, Hoping this is simple: How do I go back and change the historical value of a plot ? I have a trailing stop that will change depending on what happens the 'following day' after an event has been triggered. Sometimes this causes a zig zag plot as it re calculates Yes, it is all in hindsight, ...
by TJ
12 Mar 2013
Forum: MultiCharts
Topic: Look back days with different resolutions [SOLVED]
Replies: 2
Views: 1580

Re: Look back days with different resolutions [SOLVED]

I have a chart with minute data with my strategy on it. I use ADE in my code to get macd values of another chart with daily data. In my script I try to get the macd data of yesterday and the day before yesterday from the daily data chart. When you use If date <> date[1] then begin and use macd[1] a...
by TJ
12 Mar 2013
Forum: MultiCharts
Topic: New Topic: SPY spikes
Replies: 14
Views: 11204

Re: Finding a stock to mimic trading the E-Mini ES symbol

SPY quotes are known for spikes. Most brokers/datafeed use filters to limit the rogue ticks.
by TJ
11 Mar 2013
Forum: MultiCharts
Topic: Linking Charts [SOLVED]
Replies: 9
Views: 2416

Re: Linking Charts [SOLVED]

Cool

Thanks again, appreciate it.

Regards
You are welcome.
by TJ
11 Mar 2013
Forum: MultiCharts
Topic: Linking Charts [SOLVED]
Replies: 9
Views: 2416

Re: Linking Charts [SOLVED]

Hi, Ok I understand. Sorry to bother you but I am evaluating the features of MC comparing it to similar products. So, If I have a workspace with 2 charts: 15min and 1Hr. Can I link the 2 charts (instruments) in a way that if I scroll to a specific point on the 15 min chart (i.e 9:00 o.clock), than ...
by TJ
11 Mar 2013
Forum: MultiCharts
Topic: Linking Charts [SOLVED]
Replies: 9
Views: 2416

Re: Linking Charts [SOLVED]

Hi,

Sorry I try to re-explain it.
I would like to link 2 charts by symbols (instruments) but apparently I can not find this option.

Directly from your Wiki page (see picture)

Thanks
That's from the old MultiCharts. The current version uses the term "Instrument" instead of "Symbol".
by TJ
11 Mar 2013
Forum: MultiCharts
Topic: Linking Charts [SOLVED]
Replies: 9
Views: 2416

Re: Linking Charts [SOLVED]

Not sure what you are looking for...

Instrument is the Symbol.
by TJ
10 Mar 2013
Forum: MultiCharts
Topic: Linking Charts [SOLVED]
Replies: 9
Views: 2416

Re: Linking Charts [SOLVED]

Hi, I have a problem trying to link charts. I searched in your database but could not find anything on the argument (may be is just me LOL). The Symbol Link button is not present on the chart. I have all the other dropdown buttons (resolution, instrument, etc.) but not this one. I also looked to en...
by TJ
09 Mar 2013
Forum: MultiCharts
Topic: Drawing text on chart at a pixel fixed position [SOLVED]
Replies: 1
Views: 1021

Re: Drawing text on chart at a pixel fixed position [SOLVED]

Hi, I want to create on the screen some text that remain fixed at a given pixel location instead of scrolling with the graph with the passage of time. Please, could someone direct me in the right direction ? Best regards Massimo Look up: EasyLanguage Essentials Programmers Guide Drawing Objects Mov...
by TJ
09 Mar 2013
Forum: MultiCharts
Topic: Can Drawings appear on more than 1 chart? [SOLVED]
Replies: 3
Views: 1744

Re: Can Drawings appear on more than 1 chart? [SOLVED]

Is it possible to have Drawings on one chart appear on another? Basically, I'm marking up support and resistance on one chart and would like it to appear on other charts in the same workspace and instrument. I thought perhaps this would work if i linked the charts but it doesn't seem to. thanks An ...
by TJ
09 Mar 2013
Forum: MultiCharts
Topic: MULTICHARTS 8.5 RELEASE
Replies: 186
Views: 79458

Re: MULTICHARTS 8.5 RELEASE

In MC64Bit 8.5 Release (Build 6778) I have encountered the problem that when I change a strategy input in the format tab, the change is not reflected in the strategy. I have strapped it down to a very simple strategy for checking. When the strategy is loaded to a chart it will show one long, if I c...
by TJ
09 Mar 2013
Forum: MultiCharts
Topic: Multicharts on Window server, AWS, EC2
Replies: 35
Views: 14708

Re: Endless Stability issues of Multicharts on Window server

Hi, I've been live trading MC v8.0 64bit on a server with Windows 2008 R2 and I am continually having stability issues whereby the server will randomly bluescreen. The only software running on the server is MBT Desktop Pro as MBtrading is my broker. Server specs are 2gb CPU, 1.5gb ram. It's a vps w...
by TJ
06 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

Have you drawn up a flowchart of your logic?
by TJ
06 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

Easylanguage has been around for over 25 yrs, I am sure you are not the first person to attempt scaling in/out. This is an advanced level programming; it seems tedious, but is essential. I don't agree that this is an issue with Easylanguage. It is an internal restriction within MC that prohibits (f...
by TJ
06 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

Still no response from MultiCharts. I take it that this issue is a fundamental flaw of MC. In the mean time, I cooked up a way to go around it - hard code enough cover statements in the program. I know it is not pretty. ... Easylanguage has been around for over 25 yrs, I am sure you are not the fir...
by TJ
04 Mar 2013
Forum: MultiCharts
Topic: Multiple Data Series in a signal. [SOLVED]
Replies: 8
Views: 2809

Re: Multiple Data Series in a signal. [SOLVED]

Very interesting TJ. Thank you!
You are welcome!
by TJ
04 Mar 2013
Forum: MultiCharts
Topic: Multiple Data Series in a signal. [SOLVED]
Replies: 8
Views: 2809

Re: Multiple Data Series in a signal. [SOLVED]

OK here's an example. I want to use 3 averages as follows: data2 = 1 min data3 = 2 min data4 = 3 min value1 = average(data2,5) + average(data3,10) + average(data4,15); How do I apply that to a signal on 4 min chart? Let's say I want certain benefits from using a longer time series but still have th...
by TJ
04 Mar 2013
Forum: MultiCharts
Topic: Multiple Data Series in a signal. [SOLVED]
Replies: 8
Views: 2809

Re: Multiple Data Series in a signal. [SOLVED]

Thank you TJ. Not the answer I was hoping for however. I did want to use some shorter data series as inputs into a longer data series (data1), but you are saying that is not possible as I understand your answer. Is there anything that could be done in the code that could force what i am trying to d...
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Multiple Data Series in a signal. [SOLVED]
Replies: 8
Views: 2809

Re: Multiple Data Series in a signal. [SOLVED]

I must be missing something obvious but here goes. What is the value of multiple data series in a signal when the the additional data series are over ridden by data1 ?? If data1 is 5 min, and data2 is a 1 minute there seems to be no way to extract, lets say, a 5 bar average from data2 that actually...
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Multiple Data Series in a signal. [SOLVED]
Replies: 8
Views: 2809

Re: Multiple Data Series in a signal. [SOLVED]

I must be missing something obvious but here goes. What is the value of multiple data series in a signal when the the additional data series are over ridden by data1 ?? If data1 is 5 min, and data2 is a 1 minute there seems to be no way to extract, lets say, a 5 bar average from data2 that actually...
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Plot Paint Bar Issue [SOLVED]
Replies: 3
Views: 2074

Re: Plot Paint Bar Issue [SOLVED]

Thanks TJ! (I tried to use the "thumbs up" on your reply but got a fatal error, so I'm thanking you the old-fashioned way).

Here's where my code ended up after viewing your suggested link. Clean and works.
Nice work! Thanks for sharing.
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Plot Paint Bar Issue [SOLVED]
Replies: 3
Views: 2074

Re: Plot Paint Bar Issue [SOLVED]

I am trying to create a simple paint bar study for a moving average filter. When the three EMAs (13, 34, 255) are stacked in the proper order for a long entry (shorter EMAs above longer EMAs), I want the bar to be painted BLUE. For some reason not obvious to me all the bars get painted blue whether...
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Help! Limiting entries by time
Replies: 7
Views: 2436

Re: Help! Limiting entries by time

Hi again,

I have not managed to think of a way to do what I need.
Any ideas, anyone?

Thank you
moses
If your current entry = 1, then add to a counter that you have already fulfilled your daily quota, and stop trading.
When a new day starts, reset the counter and start again.
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

To further on that, I separate the three cover orders and they execute OK. What am I missing here? It is very unfortunate that one can not separate the orders like this in real projects as they can be due to the same condition that just occurs at different time. if (date <> date[1]) then begin // o...
by TJ
03 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

TJ,
Thanks very much again for the reply. I thought I described the situation clearly, but I am really sorry that perhaps my question was not clear enough.

It was not about autotrade - it was about backtesting.
...
Backtesting is for autotrade.
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: MULTICHARTS 8.5 RELEASE
Replies: 186
Views: 79458

Re: MULTICHARTS 8.5 RELEASE

This last update brings again an issue previously encountered. MC64 updater will link to automatically download the 32 bits version...
Same here, how to get MC 8.5 64 bits version?
download it here:
https://www.multicharts.com/trading-software-download/
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

Thanks very much for the reply. I understand the complexity there. But the issue at hand is the second order not executed even when the condition was met. For instance: if (MyCondition) then begin print("BC20"); buytocover ("BC20") 20 contracts next bar at close-MinMove stop; end; print("BC20"); wa...
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: Backtesting order execution limited to once [SOLVED]
Replies: 20
Views: 6021

Re: Backtesting order execution limited to once [SOLVED]

Trying to understand with backtesting how scaling in and fading out strategies work. It appears that MC only execute order once. For instance, I opened a short position of 100 contracts at market open. Then at 9:11, an order to cover 20 contracts was generated, and it was shown on chart. Then at 9:...
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: Inverse order data reference bug ! [SOLVED]
Replies: 2
Views: 1682

Re: Inverse order data reference bug ! [SOLVED]

I have tested the code with 2 charts and encountered no problem. ESH3 1 minute chart ESH3 daily chart MultiCharts64 Version 8.0 Release (Build 5622) ps. I have added ii reference in the print out for easy reading. vars: ii(0); if LastBarOnChart() then for ii = 100 downto 0 begin print(ii, "=", date[...
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: limit order
Replies: 1
Views: 1129

Re: limit order

you can test your code with InteractiveBrokers' demo system. It is free and does not require registration.



ps. How to post codes:
viewtopic.php?f=16&t=11713
by TJ
02 Mar 2013
Forum: MultiCharts
Topic: BackTesting Problem [SOLVED]
Replies: 13
Views: 4503

Re: BackTesting Problem [SOLVED]

Backtesting signal no longer writes to excel. This problem started with 8.5 RC but I thought it was because I missed setting the steps correctly because you changed that format. Now it doesn't write at all. I wish you would not have changed it - it was fine the way it was. Any suggestions? suggesti...
by TJ
25 Feb 2013
Forum: MultiCharts
Topic: [IntraBarPersist = true] Paramter. Great to vote on.
Replies: 5
Views: 1921

Re: IntraBarPersist

These days I put IntraBarPersist on most variables since that is the way normal languages work in that you do not have to worry about the language itself resetting your variables on you. So this raises a very interesting question. Does putting IntraBarPersist on all variables slow MC down? If it do...
by TJ
24 Feb 2013
Forum: MultiCharts
Topic: Need little help with PowerLanguage strategy creation
Replies: 12
Views: 2699

Re: Need little help with PowerLanguage strategy creation

1. you will need to add 2 data series to a chart --- a daily series and a weekly series. see post #4 [FAQ] Multiple time frame, Multi-Data Analysis https://www.multicharts.com/discussion/viewtopic.php?f=16&t=6929 2. apply indicators to the respective data series see post #5 [FAQ] Data2 https://www.m...
by TJ
23 Feb 2013
Forum: MultiCharts
Topic: Chart Indicator Colors Don't Update [SOLVED]
Replies: 8
Views: 2288

Re: Chart Indicator Colors Don't Update [SOLVED]

TJ, I have changed my code as you indicated ... your version is much cleaner. Thank you once again for your reply and the learning experience. brunor You are welcome. This coding arrangement is not only cleaner, but faster. Because if condition1 is met, it will not need to perform the rest of the c...
by TJ
22 Feb 2013
Forum: MultiCharts
Topic: Chart Indicator Colors Don't Update [SOLVED]
Replies: 8
Views: 2288

Re: Chart Indicator Colors Don't Update [SOLVED]

you should code the logic this way:

Code: Select all

Condition1 = A > A[1] and Average(B,3) > Average(B,5) ;
Condition2 = A < A[1] and Average(B,3) < Average(B,5) ;

If Condition1 then // A UP
Plot1(A,"A",yellow)
ELSE
If Condition2 then // A DOWN
Plot1(A,"A",cyan)
ELSE // NoConditionMet
Plot1(A,"A",blue);
by TJ
22 Feb 2013
Forum: MultiCharts
Topic: Chart Indicator Colors Don't Update [SOLVED]
Replies: 8
Views: 2288

Re: Chart Indicator Colors Don't Update [SOLVED]

This code change didn't work. The chart indicators are not refreshing in real-time. This applies to indicators plotted on the price bars and below the plot (using IQ Feed).
why are you using 3 plots?
by TJ
22 Feb 2013
Forum: MultiCharts
Topic: Chart Indicator Colors Don't Update [SOLVED]
Replies: 8
Views: 2288

Re: Chart Indicator Colors Don't Update [SOLVED]

what you need is an ELSE

eg.

Code: Select all

If Condition1 then
Plot5(A,"",rgb(0,0,255))
ELSE
Plot5(A,"", another color );
by TJ
22 Feb 2013
Forum: MultiCharts
Topic: How does MC caculate slippage in backtesting? [SOLVED]
Replies: 25
Views: 8560

Re: How does MC caculate slippage in backtesting? [SOLVED]

hi, I noticed that even with commission fees set to 0 in backtesting, slippage of 0~2 points occurs, more interestingly, it varies each time, but depending on what? or does MC simply randomly set the slippage in backtesting? A lot of factors can a influence the results of your backtesting; your cod...
by TJ
20 Feb 2013
Forum: MultiCharts
Topic: different outputs depending on maxbarsback
Replies: 5
Views: 1518

Re: different outputs depending on maxbarsback

TJ and bowlesj3, thank you both for the reply...and the links by TJ, the abnormality occurred a couple of bars right after maxbarsback, i guess this was the cause. Speaking of maxbarsback, if one uses multiple time frames, saying data1 and data2, because both have to meet the maxbackbars requiremen...
by TJ
19 Feb 2013
Forum: MultiCharts
Topic: different outputs depending on maxbarsback
Replies: 5
Views: 1518

Re: different outputs depending on maxbarsback

hi, i put a very short testing script, applying to the same chart data, but with maxbarsback set to 50 and 100, the outputs are different: bullish momentum turns to bearish. the script is: variables: oFastK( 0 ), oFastD( 0 ), SlowK( 0 ), SlowD( 0 ); Value1 = Stochastic( H, L, C, 14, 3, 3, 1, oFastK...
by TJ
19 Feb 2013
Forum: MultiCharts
Topic: Forex Interactivebrokers
Replies: 8
Views: 2162

Re: Forex Interactivebrokers

In the charts of minutes can not see the volume of only the ticks.
How you can see the volume in minutes?
Thank you.
There are no volume quotes in forex. Volume is only available for stocks and futures.
by TJ
18 Feb 2013
Forum: MultiCharts
Topic: Creating a set of data to be displayed as a candelstick? [SOLVED]
Replies: 1
Views: 1068

Re: Creating a set of data to be displayed as a candelstick [SOLVED]

Hello Is it possible to create a set of data and us it to be displayed as a candlestick? I just looked at a webminar from Fulcrum Trader where he was using Delta Volume displayed as a candlestick Maybe this type of indicator already exist, just never saw it before. A good day to all Martin You can ...
by TJ
16 Feb 2013
Forum: MultiCharts
Topic: Help! Limiting entries by time
Replies: 7
Views: 2436

Re: Help! Limiting entries by time

Hi, I am looking for a way to program powerlanguage in order to only enter one trade per day, when I run the strategy in portfolio backtester, on multiple equities. Can anyone help? Thanks a lot moses Look up Portfolio_CurrentEntries I haven't tried this myself, but from the description, it might d...
by TJ
16 Feb 2013
Forum: MultiCharts
Topic: day trading times for various commocities
Replies: 3
Views: 1558

Re: day trading times for various commocities

I have been trading the emini's since 2004 and have a good idea on what the day times I should use. Although the closing times were changed recently, still the 8:30 to 3:15 continue to work well. I would like to add additional commodities to review and study but don't want to trade in "off hours". ...
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Help! Limiting entries by time
Replies: 7
Views: 2436

Re: Help! Limiting entries by time

Hi,

I am looking for a way to program powerlanguage in order to only enter one trade per day, when I run the strategy in portfolio backtester, on multiple equities.

Can anyone help?

Thanks a lot
moses
Do you know how to set up a counter?
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

I have copy-paste, compiled and applied the same code and it works in my computer.
MC 8.0 release (Build 5622)

I would suggest you to contact tech support live chat; they can inspect your system online.
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

oh ok, i am sorry I will try to explain it better. The first line the values are : close, close, 20, 2 The second line the values are : high, 20 The signal of the first line Bollinger_Test is not working. The signal of the second line Bollinger Bands LE is working. Bollinger_Test and Bollinger Band...
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

Yes I am applying the right strategies. As for the Input String if you look at the last picture I circled it in red its the same code but the input fields enabled don't seem to be identical... P.S : thanks for the help and tip about picture posting. Can you be more specific? What do you want us to ...
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

One strange thing I noted is that the input strings (see attached pictures) are not the same even if the code is the same...???
What do you mean by input strings are not the same?
Check the strategy names. Are you applying the correct strategies?
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

I rebooted 3 times with the same results... :-( Do you know how to make pictures show up in the actual post instead of an attachment ? thanks TJ. To show the pictures, you have to use the IMG tag located at the top of the message window. ps. I have edited your post to show the pictures. ps. please ...
by TJ
15 Feb 2013
Forum: MultiCharts
Topic: Error in study - Floating point stack check
Replies: 12
Views: 2457

Re: Error in study - Floating point stack check

Suggestion: Shut down everything, reboot, and try again.
by TJ
14 Feb 2013
Forum: MultiCharts
Topic: Extract price data at specific time
Replies: 4
Views: 2068

Re: Extract price data at specific time

look up:

CURRENTTIME
by TJ
14 Feb 2013
Forum: MultiCharts
Topic: IntraBar timestamps in a strategy - How? [SOLVED]
Replies: 7
Views: 5957

Re: IntraBar timestamps in a strategy - How? [SOLVED]

on a 3 minute chart, if you want 1 minute before bar end, you are looking for a currenttime difference: TIME = EOB time CURRENTTIME = real time target time (a real time) = EOB time minus 1 minute of real time Thanks TJ, that would solve it for real-time trading. Do you might have an idea how to do ...
by TJ
14 Feb 2013
Forum: MultiCharts
Topic: IntraBar timestamps in a strategy - How? [SOLVED]
Replies: 7
Views: 5957

Re: IntraBar timestamps in a strategy - How? [SOLVED]

on a 3 minute chart, if you want 1 minute before bar end, you are looking for a currenttime difference:

TIME = EOB time
CURRENTTIME = real time
target time (a real time) = EOB time minus 1 minute of real time
by TJ
13 Feb 2013
Forum: MultiCharts .NET
Topic: MC.Net vs regular MC comparison list [SOLVED]
Replies: 32
Views: 19455

Re: MC.Net vs regular MC comparison list [SOLVED]

Multicharts 64 - 43 sec
Multicharts.NET 64 - 31 sec
That's a decent, but not huge advantage IMHO. Now it was 2-3x, that would be fairly remarkable.
I would not scoff at a 25% improvement.
by TJ
13 Feb 2013
Forum: MultiCharts .NET
Topic: Selecting forums for searching [SOLVED]
Replies: 2
Views: 2534

Re: Selecting forums for searching [SOLVED]

It would be helpful if we could select a forum when searching. For example, searching only in .Net forum. Regards. If you click on the spyglass icon located at the top right corner of this page (next to the search box), it will take you to the Advanced Search Page , which allows you to select the f...
by TJ
13 Feb 2013
Forum: MultiCharts
Topic: EUR.USD
Replies: 2
Views: 1220

Re: EUR.USD

What are the correct settings for EUR.USD forex? What should be in the price scale, etc?
Try a search with the words "EUR.USD forex".
The search box is located at the top right corner of this page.

Different broker/contract size might require different settings.
by TJ
13 Feb 2013
Forum: MultiCharts
Topic: Unstable Internet connection - Reload data automatically
Replies: 60
Views: 24985

Re: Unstable Internet connection - Reload data automatically

If you set it up properly with the proper router, the fall over is transparent. There are lots of articles on the web teaching you how to do it. Hi TJ, The backup I am talking about is a mobile connection using a USB modem. I am not aware of any dual wan router that would accept a USB modem. Even i...
by TJ
13 Feb 2013
Forum: MultiCharts
Topic: Unstable Internet connection - Reload data automatically
Replies: 60
Views: 24985

Re: Unstable Internet connection - Reload data automatically

Hi, Does anyone use a backup internet connection? If yes, does MC reconnect when the other connection takes over (it will have a different IP)? On my end MC does not see the active connection unless I restart it. If you set it up properly with the proper router, the fall over is transparent. There ...
by TJ
13 Feb 2013
Forum: MultiCharts
Topic: Mb Trading FOREX: Account temporarily unavailable [SOLVED]
Replies: 71
Views: 22110

Re: Mb Trading FOREX: Account temporarily unavailable [SOLVED]

This issue has been a constant.. along with multiple data disconnects a week. It's better than IB though..
IB reboots its servers every day. There is no escape; it has nothing to do with the internet connection or MultiCharts.
by TJ
12 Feb 2013
Forum: MultiCharts
Topic: simple t.s. example
Replies: 7
Views: 1871

Re: simple t.s. example

Thanks. I typed this script mixing the two t.s. ________________________________________________ inputs: Price( Close ), FastLength( 9 ), SlowLength( 18 ) ; variables: var0( 0 ), var1( 0 ) ; var0 = AverageFC( Price, FastLength ) ; var1 = AverageFC( Price, SlowLength ) ; condition1 = CurrentBar > 1 ...
by TJ
11 Feb 2013
Forum: MultiCharts
Topic: simple t.s. example
Replies: 7
Views: 1871

Re: simple t.s. example

this is a default MC script : ____________________________________________ inputs: Price( Close ), FastLength( 9 ), SlowLength( 18 ) ; variables: var0( 0 ), var1( 0 ) ; var0 = AverageFC( Price, FastLength ) ; var1 = AverageFC( Price, SlowLength ) ; condition1 = CurrentBar > 1 and var0 crosses over ...
by TJ
10 Feb 2013
Forum: MultiCharts
Topic: What does cc1plus.exe do?
Replies: 5
Views: 3651

Re: What does cc1plus.exe do?

The "verifying studies" part is what takes so long. The installation alone, shouldn't take more than 5 minutes by itself.. When you install, you have the option of NOT verifying all studies, then it's fast. (you can verify the studies in PE, after the install completes- the advantage of verifying i...
by TJ
08 Feb 2013
Forum: MultiCharts
Topic: Error with VWAP indicator [SOLVED]
Replies: 7
Views: 2994

Re: Error with VWAP indicator [SOLVED]

I have restarted also my PC, nothing. The problem is present in all charts that i use, i use last RC of MC 64bit
is there volume data in your symbol?

you can check by adding the Volume Average indicator.
by TJ
07 Feb 2013
Forum: MultiCharts
Topic: Strange PC behaviour after MC RC update
Replies: 16
Views: 3597

Re: Strange PC behaviour after MC RC update

If you are an advanced computer user, I would suggest a registry clean up. But this is only for advanced computer user who has experience with registry and not for everyone.
by TJ
07 Feb 2013
Forum: MultiCharts
Topic: Excel Link.. Send data to Excel /Reactivating an old project [SOLVED]
Replies: 19
Views: 5889

Re: Excel Link.. Send data to Excel /Reactivating an old pro [SOLVED]

Martin,

I've just renamed the dll and same problem.

Some times i have the error message 50 sometimes not !!!!!!!

Did you you find an easy way for using mc with excel ?

Best regards.
Did you reboot the computer?
by TJ
05 Feb 2013
Forum: MultiCharts
Topic: Advice for setup of new PC
Replies: 5
Views: 1690

Re: Advice for setup of new PC

Zoli: Thanks for the notes on multiple screen setup.
by TJ
04 Feb 2013
Forum: MultiCharts
Topic: Buy at open/Sell at open bug
Replies: 16
Views: 3293

Re: Buy at open/Sell at open bug

Sure, review it. The execution is:

Buy next bar at open stop ;
sellshort next bar at open stop ;
that's different from what you had in the 1st post.
by TJ
04 Feb 2013
Forum: MultiCharts
Topic: Buy at open/Sell at open bug
Replies: 16
Views: 3293

Re: Buy at open/Sell at open bug

not sure what to tell ya. That screen shot isn't photoshopped.
Maybe your codes need a review?
by TJ
04 Feb 2013
Forum: MultiCharts
Topic: IEasyLanguageObject C++ question
Replies: 5
Views: 2012

Re: IEasyLanguageObject C++ question

Hi @, I want to convert the array that is contained in the IEasylanguage property Close MD to a vector containing the last 50 values. Right now I use this; vector<double> sig; for (int i = 0; i < 50; i++) { sig.push_back(pELObj->CloseMD[data1]->AsDouble[ i ]); } Is there a better way of doing this ...
by TJ
03 Feb 2013
Forum: MultiCharts
Topic: strategy to indicator conversion
Replies: 3
Views: 1129

Re: strategy to indicator conversion

Hi thx for the reply. Actually I wonder is there an easier way to acieve my goal: I want to show several different strategies realtime entries & exits for one symbol. So far I just have six small chart windows of that symbol, each running a different strategy. Is there an easier way to do this, lik...
by TJ
03 Feb 2013
Forum: MultiCharts
Topic: Wrong Data range
Replies: 6
Views: 1719

Re: Wrong Data range

On 1 tick chart i have set 15 days back from current date but the backfilling go back only for 2 days, what's wrong? I use last beta2 64bit version, thank you. What is the instrument? who is your data provider? what kind of account do you have? what length of data does your provider supply for that...
by TJ
03 Feb 2013
Forum: MultiCharts
Topic: orders are using buy and sell levels from previous bar
Replies: 4
Views: 1522

Re: orders are using buy and sell levels from previous bar

I have a strategy that uses intrabarordergeneration=true (and bar magnifier using 1 tick) and 3 data series, namely data1=5 minute bars, data2=5 second bars, data3=5 minutes bars again (overlaid on data2 chart for visual tracking only). Other pertinent info is: * Multicharts version 8.0 build 5620 ...
by TJ
02 Feb 2013
Forum: MultiCharts
Topic: Issue with Signals
Replies: 3
Views: 1223

Re: Issue with Signals

So I have developed a strategy that takes both long and short positions. The issue I am having is that when a bar indicates that the market position should be switched from either a short to a long, or a long to a short on the next bar at market, it will close the current position out (cover short ...
by TJ
02 Feb 2013
Forum: MultiCharts
Topic: Alert Visual Pop Up v.s. DuaL Display Screens [SOLVED]
Replies: 3
Views: 1472

Re: Alert Visual Pop Up v.s. DuaL Display Screens [SOLVED]

In a one PC dual screen set up, what determines which screen the Alert Visual Pop Up is displayed to? The default in my system appears to be the charts on screen 1 and the pop ups on screen 2.
The alerts will pop up on your primary screen.
by TJ
02 Feb 2013
Forum: MultiCharts
Topic: strategy to indicator conversion
Replies: 3
Views: 1129

Re: strategy to indicator conversion

Hi Does anyone now how to create a simple indicator out of the below strategy. I have been experimenting with paintbars etc. to no avail. It runs on 20 min bars. inputs: q(1.5),n(25); if c > Average(c,n) then buy next bar at o of tomorrow+(q*range) stop; sell next bar at o of tomorrow-(q*range) sto...
by TJ
01 Feb 2013
Forum: MultiCharts
Topic: subcommand after SetStopLoss was hit
Replies: 5
Views: 1839

Re: subcommand after SetStopLoss was hit

InteractiveBrokers has a free demo system. It streams day-old data 24 hrs a day for testing purposes. No registration is required to use this facility.
by TJ
01 Feb 2013
Forum: MultiCharts
Topic: Multiple concurrent strategies
Replies: 4
Views: 2071

Re: Multiple concurrent strategies bug - has this been fixe

Well, TJ - I hear you....but that means each strategy needs a separate account at the same broker ? ... No, go back to your link and read sbokov's answer. ps. The elite thread is 5 yrs old (2007). Many things have changed, eg. MultiCharts has added new keywords to the EasyLanguage extensions, you c...
by TJ
01 Feb 2013
Forum: MultiCharts
Topic: Suggestions, annoyances, small bugs
Replies: 119
Views: 59169

Re: Suggestions, annoyances, small bugs

... http://www.multicharts.com/discussion/download/file.php?mode=view&id=5836&sid=8047bf067b2f5597631f7cc74b42db94 This can be coded in PowerLanguage. See for example here . ... I agree with MAtricks, a check box is the logical and elegant way to make the alert once per bar. We should extend this f...
by TJ
31 Jan 2013
Forum: MultiCharts
Topic: Multiple concurrent strategies
Replies: 4
Views: 2071

Re: Multiple concurrent strategies bug - has this been fixe

http://www.elitetrader.com/vb/showthread.php?s=&threadid=100858&perpage=6&pagenumber=3 I was surprised to hear about this. Has it been fixed in the latest release ? IOW can I have two strategies active with a single Interactive Brokers account...and sell 1 contract via strategy "A" and Buy another ...
by TJ
31 Jan 2013
Forum: User Contributed Studies and Indicator Library
Topic: anyone have working easylanguage for an ichimoku cloud?
Replies: 16
Views: 13694

Re: anyone have working easylanguage for an ichimoku cloud?

TJ... Thanks that's a big help... NOW next question... Is there a way (easy or otherwise) to code MC to shade the space between the 2 lines that form a cloud? This indicator had a TL, but is there a way to shade the area between the lines? thanks right click on the chart, select the indicator, unde...
by TJ
31 Jan 2013
Forum: User Contributed Studies and Indicator Library
Topic: anyone have working easylanguage for an ichimoku cloud?
Replies: 16
Views: 13694

Re: anyone have working easylanguage for an ichimoku cloud?

If you do and you don't mind sharing, please post code. thanks
Look under Bands and Channels
http://www.tradersxchange.com/index.php
by TJ
30 Jan 2013
Forum: MultiCharts
Topic: feature request - quoteboards
Replies: 25
Views: 6666

Re: feature request - quoteboards

Please help... ... Since we're having different starts and closes for each data series the colors and Open/Close status are all over the place. ... If you want multiple symbols on the same chart, you have to set up a 24 hr chart, and modify the code to capture the portion of the OHLC for the specif...
by TJ
29 Jan 2013
Forum: MultiCharts
Topic: Using an indicator change strategy profit targets
Replies: 8
Views: 2755

Re: Using an indicator change strategy profit targets

You can insert real time input into a study (both indicator and strategy) through drawing objects.
It is a long an tedious process to code. Dangerous too, if you do the wrong thing, your strategy can lose you big money.

As a start, you can look up the following keywords:

Text_Get****
TL_Get****
by TJ
28 Jan 2013
Forum: MultiCharts
Topic: Problem with indicator showing up....
Replies: 4
Views: 1195

Re: Problem with indicator showing up....

I wrote an indicator that is based on a length of 20 bars... My problem is... that is takes hundreds of bars before it finally shows up. How can I get it to show up earlier than this? My big concern is when ES rolls over, I won't have enough bars to read the indicator for several days prior... Than...
by TJ
27 Jan 2013
Forum: MultiCharts
Topic: No Connection to DRMS ! [SOLVED]
Replies: 23
Views: 8937

Re: No Connection to DRMS ! [SOLVED]

Sorry I cannot think of anything else. You might have to go on help chat to let tech support check out your set up.
by TJ
27 Jan 2013
Forum: MultiCharts
Topic: No Connection to DRMS ! [SOLVED]
Replies: 23
Views: 8937

Re: No Connection to DRMS ! [SOLVED]

Ok, really dumb question here. When you say "ping," do you mean "bring it up on my browser?" Thanks... http://www.wikihow.com/Ping-an-IP-Address ps. this is not ping, but can you bring up https://mcauth2.com/ on your browser? yes, i can bring it up on my browser...it's some Apache server maintenanc...
by TJ
27 Jan 2013
Forum: MultiCharts
Topic: No Connection to DRMS ! [SOLVED]
Replies: 23
Views: 8937

Re: No Connection to DRMS ! [SOLVED]

Ok, really dumb question here. When you say "ping," do you mean "bring it up on my browser?" Thanks...
http://www.wikihow.com/Ping-an-IP-Address




ps. this is not ping, but can you bring up https://mcauth2.com/ on your browser?
by TJ
27 Jan 2013
Forum: MultiCharts
Topic: No Connection to DRMS ! [SOLVED]
Replies: 23
Views: 8937

Re: No Connection to DRMS ! [SOLVED]

Well, I appreciate everyone's help, but I've exhausted every remedy. I've even done a complete wipe/re-install of windows. No dice. The Multicharts servers are not responding. I realize there's a need for anti-piracy. The problem is when it interferes with those of us who've paid up and are just tr...
by TJ
27 Jan 2013
Forum: MultiCharts
Topic: No Connection to DRMS ! [SOLVED]
Replies: 23
Views: 8937

Re: No Connection to DRMS ! [SOLVED]

did you update or make changes to your anti-virus and/or firewall? It's a new computer, but the anti-virus/firewall configuration is the same. You should check to make sure you have added the following URL in your anti-virus/firewall as safe sites: https://mcauth.com/ https://mcauth1.com/ https://m...

Go to advanced search