Search found 7742 matches

by TJ
20 Dec 2019
Forum: MultiCharts
Topic: TURNOVER variable [SOLVED]
Replies: 7
Views: 1506

Re: TURNOVER variable [SOLVED]

ps. see post #1 & post #2 on how to post codes
viewtopic.php?t=11713
by TJ
20 Dec 2019
Forum: MultiCharts
Topic: TURNOVER variable [SOLVED]
Replies: 7
Views: 1506

Re: TURNOVER variable [SOLVED]

Try this:

input:
TOMA.Length( 50 ); // 50 days approx 10 weeks

vars:
Turnover( 0 ),
TOMA( 0 ); // Turnover moving average

Turnover = C * Volume ;
TOMA = Average( Turnover , TOMA.length );
by TJ
20 Dec 2019
Forum: MultiCharts
Topic: TURNOVER variable [SOLVED]
Replies: 7
Views: 1506

Re: TURNOVER variable [SOLVED]

What is your chart resolution?
by TJ
19 Dec 2019
Forum: MultiCharts
Topic: TURNOVER variable [SOLVED]
Replies: 7
Views: 1506

Re: TURNOVER variable [SOLVED]

Do you need an array?

If you want to know the average, then just calculate the moving average of the "Turnover".
by TJ
17 Dec 2019
Forum: MultiCharts
Topic: MULTICHARTS 14.0 BETA 3
Replies: 32
Views: 11320

Re: MULTICHARTS 14.0 BETA 3 Compile error

Compile Error again in Power Language Editor . This occurred just after installation of MC 14 beta 3 and restore with studies backup from MC 12.0 R8 version. Same happen in different computers with different Lifetime License. "Compile Error Line 0, column 0" occurred even trying to compile blank pa...
by TJ
11 Dec 2019
Forum: MultiCharts
Topic: multicharts date in file name [SOLVED]
Replies: 4
Views: 1340

Re: multicharts date in file name [SOLVED]

i tried to solve like this FName3 = "C:\Temp\CheckList_BLSH"+datetostring(date)+".txt";
but i got error because i cannot create file with special character "/"
any idea?
Have you checked the Wiki for usage examples of datetostring ?
by TJ
30 Nov 2019
Forum: MultiCharts
Topic: Which Computer to Buy?
Replies: 25
Views: 7101

Re: Which Computer to Buy?

video not available
The video was too sensitive; they have withdrawn it. :(
by TJ
24 Nov 2019
Forum: MultiCharts
Topic: another Heikin Ashi curiosity
Replies: 3
Views: 925

Re: another Heikin Ashi curiosity

...and is it mandatory to use fastest time resolution for data 1?
In my study data1 is set at 240 minutes and time resolution for data2 is 1 hour with heinkin ashi
There are no hard rules against it. If you can make your logic work consistently for you, all the power to you.
by TJ
15 Nov 2019
Forum: MultiCharts
Topic: Vwap
Replies: 4
Views: 1081

Re: Vwap

Also, look for the indicator/function in its full name - Volume Weighted Average Price.
by TJ
15 Nov 2019
Forum: MultiCharts
Topic: Vwap
Replies: 4
Views: 1081

Re: Vwap

sorry was is PLE? TJ
PowerLanguage Editor
by TJ
15 Nov 2019
Forum: MultiCharts
Topic: Vwap
Replies: 4
Views: 1081

Re: Vwap

Does anyone perhaps have the code for a vwap or vwap channel
Have you checked your PLE?
or done a search in this forum?
by TJ
14 Nov 2019
Forum: MultiCharts
Topic: IQFeed @ES#C vs @ES# backtest
Replies: 11
Views: 2842

Re: IQFeed @ES#C vs @ES# backtest

hello all, I have been working on a futures signal using IQFeed - @ES# and @ES#C. I have found that over the exact same time frame these two return very different Profit and loss data. My backtest is only going back 10 days. 11-12-19 back to 11-2-19. I am using the CME: Equity Index Futs Combined s...
by TJ
12 Nov 2019
Forum: MultiCharts
Topic: DELTA
Replies: 5
Views: 1481

Re: DELTA

is there not already something ready to program I can unfortunately not
You have already done the programming above:

Code: Select all

var:
Delta(0);

Delta = InsideASK - insideBid;
Note: InsideAsk and InsideBid are quote fields.
by TJ
12 Nov 2019
Forum: MultiCharts
Topic: Implementing a simple Donchian Channel Strategy - Issues with entry [SOLVED]
Replies: 3
Views: 1281

Re: Implementing a simple Donchian Channel Strategy - Issues with entry [SOLVED]

You might find this FAQ useful:

[FAQ] Autotrade / Backtest / Optimization
viewtopic.php?t=10811
by TJ
12 Nov 2019
Forum: MultiCharts
Topic: DELTA
Replies: 5
Views: 1481

Re: DELTA

Go to the Wiki

Look for the section:
PowerLanguage Keyword Reference

Under
Quote Fields‎ (36 P)

Look for:

InsideAsk
InsideBid
by TJ
09 Nov 2019
Forum: MultiCharts
Topic: Exit Discrepancy: Automated vs. BackTested [SOLVED]
Replies: 9
Views: 2660

Re: Empirical Observation Re Complex Stop-Loss Coding [SOLVED]

Although what follows does not adhere entirely to the "party line" I have seen on this forum, I have found it to be accurate. It is possible to use the keyword "SetStopLoss" within a condition; however, you need to be very careful when doing so. 。。。 Nobody ever said it is impossible. If you read th...
by TJ
04 Nov 2019
Forum: MultiCharts
Topic: Data2
Replies: 12
Views: 4008

Re: Data2

What are the data series resolutions? including the ADE chart?
by TJ
03 Nov 2019
Forum: MultiCharts
Topic: Adding backadjusted contracts from IQ, not working [SOLVED]
Replies: 15
Views: 4347

Re: Adding backadjusted contracts from IQ, not working [SOLVED]

。。。 Appreciate the help though, workarounds around this bug exist as you say. Thanks Nope, I know nothing of the bug you are alluding to. I do not use IQ; I do not know why you are experiencing what you are experiencing. What I have shown you is NOT a workaround. This is the proper way to do a cont...
by TJ
02 Nov 2019
Forum: MultiCharts
Topic: Adding backadjusted contracts from IQ, not working [SOLVED]
Replies: 15
Views: 4347

Re: Adding backadjusted contracts from IQ, not working [SOLVED]

What do you mean by "need to build a new custom future"?

All you need is to set up the artificial symbol once, and MC will do the back adjusting for you on the fly.


ps. I am not trying to persuade you not to seek the solution you want.
by TJ
01 Nov 2019
Forum: MultiCharts
Topic: Adding backadjusted contracts from IQ, not working [SOLVED]
Replies: 15
Views: 4347

Re: Adding backadjusted contracts from IQ, not working [SOLVED]

Is there any reason you do not want to use MultiCharts' Custom Futures?
by TJ
30 Oct 2019
Forum: MultiCharts
Topic: How to simulate maximum potential profit for a number of trades [SOLVED]
Replies: 7
Views: 1882

Re: How to simulate maximum potential profit for a number of trades [SOLVED]

First, you have to define what is "highest high".

It sounds simple . . . but have you tried to put it down on paper?
by TJ
27 Oct 2019
Forum: MultiCharts
Topic: RT Text in Subcharts code help [SOLVED]
Replies: 8
Views: 1749

Re: RT Text in Subcharts code help [SOLVED]

You need to start from Step-Zero . . .

Forget about whatever you have tried. Forget about LBOC . . .

Start by describing what do you want to achieve on the screen.
Draw a diagram(s) to illustrate your vision.
by TJ
27 Oct 2019
Forum: MultiCharts
Topic: Exit Discrepancy: Automated vs. BackTested [SOLVED]
Replies: 9
Views: 2660

Re: Exit Discrepancy: Automated vs. BackTested [SOLVED]

We don't know your background and experience, so it is difficult to find a starting point for this discussion. Have you checked out the FAQ in this forum? Have you read any of these articles? Relevant articles in Wiki: Fundamentals - Backtesting vs Live Trading - Understanding Backtesting - Why is D...
by TJ
26 Oct 2019
Forum: MultiCharts
Topic: RT Text in Subcharts code help [SOLVED]
Replies: 8
Views: 1749

Re: RT Text in Subcharts code help [SOLVED]

Sorry I do not understand what you are trying to achieve . . .
by TJ
26 Oct 2019
Forum: MultiCharts
Topic: RT Text in Subcharts code help [SOLVED]
Replies: 8
Views: 1749

Re: RT Text in Subcharts code help [SOLVED]

This is a coding question; You need to post your codes.

Please write some notes on the screenshot to illustrate:
1. What is wrong
2. What are you expecting to see
by TJ
25 Oct 2019
Forum: MultiCharts
Topic: RT Text in Subcharts code help [SOLVED]
Replies: 8
Views: 1749

Re: RT Text in Subcharts code help [SOLVED]

What are the resolutions of the 5 data series ?

Which is data1 ?
by TJ
20 Oct 2019
Forum: MultiCharts
Topic: MaxBarsBack - Help needed [SOLVED]
Replies: 17
Views: 3945

Re: MaxBarsBack - Help needed [SOLVED]

What kind of calculations do you have in your strategy/study?
by TJ
20 Oct 2019
Forum: MultiCharts
Topic: MaxBarsBack - Help needed [SOLVED]
Replies: 17
Views: 3945

Re: MaxBarsBack - Help needed [SOLVED]

What is the instrument?
What is the chart resolution?
How much back data do you have? (ie many bars on the chart?)
How many data series?

Please take a screenshot of the error message.
by TJ
20 Oct 2019
Forum: MultiCharts
Topic: Can you scan a large group of stocks simultaneously
Replies: 2
Views: 746

Re: Can you scan a large group of stocks simultaneously

I don't see why not.

Have you considered the Portfolio Trader?
by TJ
13 Oct 2019
Forum: MultiCharts
Topic: Trouble finding max (or highest) volume of past N bars [SOLVED]
Replies: 3
Views: 1184

Re: Trouble finding max (or highest) volume of past N bars [SOLVED]

What is the instrument?
What is the chart resolution?

Maybe indirectly related,
Look up the definition and usage example of the following keywords

Volume
Ticks
by TJ
12 Oct 2019
Forum: MultiCharts
Topic: Backetest is working only from the past 5 days and misteriously dosn't before that date [SOLVED]
Replies: 7
Views: 1852

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

Why do you need 2,500 bars of MBB?

Please go to the wiki and study the purpose and usage of the MaxBarsBack.
by TJ
10 Oct 2019
Forum: MultiCharts
Topic: Any build in VWAP indicator in MC? [SOLVED]
Replies: 7
Views: 4453

Re: Any build in VWAP indicator in MC? [SOLVED]

Already checked don’t have this indicator
Have you looked for the full name . . .

Volume Weighted Average Price
by TJ
10 Oct 2019
Forum: MultiCharts
Topic: Any build in VWAP indicator in MC? [SOLVED]
Replies: 7
Views: 4453

Re: Any build in VWAP indicator in MC? [SOLVED]

Lots of copies on the web.

Is there anything special you are looking for?
by TJ
09 Oct 2019
Forum: MultiCharts
Topic: Any build in VWAP indicator in MC? [SOLVED]
Replies: 7
Views: 4453

Re: Any build in VWAP indicator in MC? [SOLVED]

I saw some posts to customise it, but does it have build-in indicator?
What do you mean by "built-in" ?

Have you checked the PLE? under indicator as well as function?
by TJ
08 Oct 2019
Forum: MultiCharts
Topic: Order rejected after close
Replies: 5
Views: 1276

Re: Order rejected after close


@TJ
By the way, according to viewtopic.php?t=10811, I have to implement myself if I want to use stop loss or trailing with condition, is that correct?
But Multicharts built-in signals also put conditions on "Global Exits" like below:
If you can make the logic work, by all means do it.
by TJ
08 Oct 2019
Forum: MultiCharts
Topic: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]
Replies: 10
Views: 2147

Re: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]

After declared IntraBarPersist variable, most of the bar works to keep the value, but still have some bars reset the variable, any clue?
See post #2
by TJ
08 Oct 2019
Forum: MultiCharts
Topic: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]
Replies: 10
Views: 2147

Re: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]

Go to Wiki
Go to PowerLanguage Keyword Reference
Look under Declaration‎ (28 P)

IntraBarPersist

https://www.multicharts.com/trading-sof ... _Reference
by TJ
08 Oct 2019
Forum: MultiCharts
Topic: Order rejected after close
Replies: 5
Views: 1276

Re: Order rejected after close

by TJ
07 Oct 2019
Forum: MultiCharts
Topic: Order rejected after close
Replies: 5
Views: 1276

Re: Order rejected after close

by TJ
07 Oct 2019
Forum: MultiCharts
Topic: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]
Replies: 10
Views: 2147

Re: After Intra-Bar Order Generation (IOG) enabled, then variable reset [SOLVED]

In 1 min timeframe, When Intra-Bar Order Generation (IOG) disabled, I set a variable, I could get it in next bar (next min).. When Intra-Bar Order Generation (IOG) enabled, I set a variable, but it will reset in next OHLC bar. Any idea? If this is a coding question, please post a snippet of your co...
by TJ
03 Oct 2019
Forum: MultiCharts
Topic: Some help with Renko
Replies: 19
Views: 5714

Re: Some help with Renko

Hello all, I know.....I know Renko! I’ve been using them successfully for years with manual trading and have been trying to creat some automated signals based on the indicators that I use visually. [snipped] Thanks everyone for some much needed help. GuppyDRV I have seen people successfully auto-tr...
by TJ
24 Sep 2019
Forum: MultiCharts
Topic: Floor Povit Point not inline with the exchange open time [SOLVED]
Replies: 5
Views: 1482

Re: Floor Povit Point not inline with the exchange open time [SOLVED]

Make sure you have set the scaling properly.
by TJ
22 Sep 2019
Forum: MultiCharts
Topic: Positions Size
Replies: 2
Views: 926

Re: Positions Size

Start here:
viewtopic.php?t=6929

See the ebooks in the first post. Download those free ebooks. They have sample codes on making texts.
by TJ
22 Sep 2019
Forum: MultiCharts
Topic: Positions Size
Replies: 2
Views: 926

Re: Positions Size

First Lesson in Coding:

See post #5
viewtopic.php?t=11713
by TJ
21 Sep 2019
Forum: MultiCharts
Topic: Backtest vs Real Time
Replies: 4
Views: 1277

Re: Backtest vs Real Time

You can start here:
[FAQ] Autotrade / Backtest / Optimization
viewtopic.php?t=10811
by TJ
18 Sep 2019
Forum: MultiCharts
Topic: Buy this bar at open
Replies: 3
Views: 1426

Re: Buy this bar at open

The strategy calculation is done at the end of a bar (EOB).
How soon do you want to trade AFTER the opening of the market?

Bear in mind, your vision might be trading on a daily bar, but in practice, you are actually trading intraday.
Therefore your analysis must include an intraday chart.
by TJ
17 Sep 2019
Forum: MultiCharts
Topic: Looking up timezone setting from powerlanguage
Replies: 3
Views: 1044

Re: Looking up timezone setting from powerlanguage

ComputerDateTime is your local time
by TJ
17 Sep 2019
Forum: MultiCharts
Topic: Looking up timezone setting from powerlanguage
Replies: 3
Views: 1044

Re: Looking up timezone setting from powerlanguage

Go to the Wiki, you will find the following sections on time:

Date and Time Routines‎ (54 P)
DateTime‎ (2 P)
by TJ
15 Sep 2019
Forum: MultiCharts
Topic: Compiled with error [SOLVED]
Replies: 10
Views: 2519

Re: Compiled with error [SOLVED]

Shut down the computer; start again.
by TJ
08 Sep 2019
Forum: MultiCharts
Topic: Order- and Position Tracker
Replies: 3
Views: 1320

Re: Order- and Position Tracker

by TJ
31 Aug 2019
Forum: MultiCharts
Topic: time stamp [SOLVED]
Replies: 8
Views: 1677

Re: time stamp [SOLVED]

Try this

Code: Select all

input:
Open.US( 30000 );

if time_s >= Open.us and time_s[1] < Open.us then
plot1 ( h*2, "Open.US" ); // plot style set as histogram
by TJ
31 Aug 2019
Forum: MultiCharts
Topic: time stamp [SOLVED]
Replies: 8
Views: 1677

Re: time stamp [SOLVED]

What is your chart resolution?
It makes a difference on how you program.
by TJ
31 Aug 2019
Forum: MultiCharts
Topic: time stamp [SOLVED]
Replies: 8
Views: 1677

Re: time stamp [SOLVED]

But what do you want to do ??? Do you want an arrow? Where do you want the arrow? Can you draw it out on your screenshot? Do you want a line? From where to where? Do you want a text saying "dealers in Europe start Start selling" ? Do you want to enter a log in a file that the time is 3:00 US time? W...
by TJ
31 Aug 2019
Forum: MultiCharts
Topic: time stamp [SOLVED]
Replies: 8
Views: 1677

Re: time stamp [SOLVED]

How do you want this " time stamp"?

What is your screenshot showing?
by TJ
29 Aug 2019
Forum: MultiCharts
Topic: Here is my Linear Regression 2 colors code - How can I anticipate the color switch? [SOLVED]
Replies: 2
Views: 984

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

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

Code: Select all

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

SetPlotColor[Displace+1]( 1, DnColor );
by TJ
24 Aug 2019
Forum: MultiCharts
Topic: MC12 format window default Setting
Replies: 3
Views: 750

Re: MC12 format window default detting

Please take a screen shot.
by TJ
24 Aug 2019
Forum: MultiCharts
Topic: IB TWS historical data request pacing violation
Replies: 13
Views: 8412

Re: IB TWS historical data request pacing violation

Two things:

1. Make sure you have configured your MC to save the data to your computer.

2. When you shut down the computer at the end of the day, make sure all the MC processes are completely finished and exited the Taskmanager.
by TJ
21 Aug 2019
Forum: MultiCharts
Topic: Recalculating an indicator/study
Replies: 2
Views: 775

Re: Recalculating an indicator/study

From the Wiki

Go to
8 PowerLanguage Keyword Reference

Looking under
Execution Control‎ (14 P)

You will find the keyword
RecalcLastBarAfter
by TJ
20 Aug 2019
Forum: MultiCharts
Topic: Printing [SOLVED]
Replies: 2
Views: 932

Re: Printing [SOLVED]

The print log is in the PowerLanguage Editor.
Look for the OUTPUT tab located near the bottom of the window.
by TJ
19 Aug 2019
Forum: MultiCharts
Topic: ADE: Error in study ... Can't find dll "elcollections2.dll"
Replies: 9
Views: 2705

Re: ADE: Error in study ... Can't find dll "elcollections2.dll"

Have you read post #5 above?
[Advanced Topic] MultiCharts 64 bit Resources (3rd Party)

This is not something new; I wrote the post in 2012 !!!
People have been using MC64 with ADE for years.
by TJ
16 Aug 2019
Forum: MultiCharts
Topic: ADE: Error in study ... Can't find dll "elcollections2.dll"
Replies: 9
Views: 2705

Re: ADE: Error in study ... Can't find dll "elcollections2.dll"

I would add the dll to ALL the possible directories... anywhere you see dll, add a copy there too, just in case MC is looking at that directory.

Failing the above, you can use LiveChat with techsupport, they can sort it out for you.
by TJ
16 Aug 2019
Forum: MultiCharts
Topic: ADE: Error in study ... Can't find dll "elcollections2.dll"
Replies: 9
Views: 2705

Re: ADE: Error in study ... Can't find dll "elcollections2.dll"

Please see:
[Advanced Topic] MultiCharts 64 bit Resources (3rd Party)
viewtopic.php?t=10094
by TJ
16 Aug 2019
Forum: MultiCharts
Topic: ADE: Error in study ... Can't find dll "elcollections2.dll"
Replies: 9
Views: 2705

Re: ADE: Error in study ... Can't find dll "elcollections2.dll"

Global Variable is included in the MC installation, not ADE.
by TJ
16 Aug 2019
Forum: MultiCharts
Topic: ADE: Error in study ... Can't find dll "elcollections2.dll"
Replies: 9
Views: 2705

Re: ADE: Error in study ... Can't find dll "elcollections2.dll"

Are you using the 64 bit version of ELCollections?
by TJ
13 Aug 2019
Forum: MultiCharts
Topic: Trading from Multiple Charts on One Instrument
Replies: 4
Views: 1856

Re: Trading from Multiple Charts on One Instrument

What is your question?
by TJ
06 Aug 2019
Forum: MultiCharts
Topic: ADE implementation [SOLVED]
Replies: 9
Views: 3027

Re: ADE implementation [SOLVED]

It is good to know the problem has been solved.
Thank you for reporting back.
Good trading to you.
by TJ
06 Aug 2019
Forum: MultiCharts
Topic: ADE implementation [SOLVED]
Replies: 9
Views: 3027

Re: ADE implementation [SOLVED]

ListS.New?
Have you downloaded those functions and compiled them in your MC?
They are with the docs.
by TJ
06 Aug 2019
Forum: MultiCharts
Topic: ADE implementation [SOLVED]
Replies: 9
Views: 3027

Re: ADE implementation [SOLVED]

Sorry I do not use ELC; I do not have those sources.
by TJ
06 Aug 2019
Forum: MultiCharts
Topic: ADE implementation [SOLVED]
Replies: 9
Views: 3027

Re: ADE implementation [SOLVED]

Do you have the 64 bit version of ELCollections?

viewtopic.php?t=10094
by TJ
04 Aug 2019
Forum: MultiCharts
Topic: Changing from online to offline without closing workspaces ? [SOLVED]
Replies: 1
Views: 1121

Re: Changing from online to offline without closing workspaces ? [SOLVED]

. . .

Any way to do this change online/offline without closing the workspaces ?

Error.PNG
NO. You have to close all workspaces first.
I believe this is done to avoid accidental switching which can cause unintended trading activities.
by TJ
04 Aug 2019
Forum: MultiCharts
Topic: ELCollections compile error [SOLVED]
Replies: 5
Views: 1681

Re: ELCollections compile error [SOLVED]

Prob coding error

Can't even pass line 0, column 0.
by TJ
02 Aug 2019
Forum: MultiCharts
Topic: Exit on close
Replies: 1
Views: 771

Re: Exit on close

See post #6
[FAQ] SetExitOnClose
viewtopic.php?t=10811
by TJ
02 Aug 2019
Forum: MultiCharts
Topic: Crosshairs Tick setting
Replies: 3
Views: 1035

Re: Crosshairs Tick setting

You can submit a feature request here:

https://www.multicharts.com/pm/public/multicharts
by TJ
02 Aug 2019
Forum: MultiCharts
Topic: Crosshairs Tick setting
Replies: 3
Views: 1035

Re: Crosshairs Tick setting

You can try one of the drawing tools.
eg. Fibonacci grid

At the main menu, go to "View" and set the "Snap mode". The drawing will give you the exact price points.
by TJ
31 Jul 2019
Forum: MultiCharts
Topic: FileAppend function not creating file [SOLVED]
Replies: 4
Views: 1719

Re: FileAppend function not creating file [SOLVED]

Im using the code below to test the FileAppend function but nothing seems to happen. No file is created and if i manually create the file nothing is added to it.
Make sure your MC has the Right to write to the directory.
by TJ
26 Jul 2019
Forum: MultiCharts
Topic: Trailing stop with Webank [SOLVED]
Replies: 11
Views: 2148

Re: Trailing stop with Webank [SOLVED]

OK Svetlana I only have to set the IOG and nothing else, right?
Thank you
See post #5
viewtopic.php?t=10811

Pay special attention to note about IOG.
by TJ
22 Jul 2019
Forum: MultiCharts
Topic: Problem with Highest built in function on data2
Replies: 4
Views: 1397

Re: Problem with Highest built in function on data2

MC version and build number?
by TJ
21 Jul 2019
Forum: MultiCharts
Topic: Indicator calculating even if data field is n/a
Replies: 6
Views: 1786

Re: Indicator calculating even if data field is n/a

See post #1 & post #2
1. [FAQ] How to Post Codes ... so that people can read.
viewtopic.php?t=11713
by TJ
21 Jul 2019
Forum: MultiCharts
Topic: Constantly in the market buy/sell logic
Replies: 10
Views: 2365

Re: Constantly in the market buy/sell logic

. . .

edit to answer to TJ

you are long 4 contrats, you want to be short 2, then sell 6 : 4 to close your buy position and 2 to be short 2 contract.
None of my examples have long 4 contrats.
by TJ
20 Jul 2019
Forum: MultiCharts
Topic: Heikin Ashi candles in DataStream 2
Replies: 5
Views: 1348

Re: Heikin Ashi candles in DataStream 2

See post #14
[FAQ] Multi-data strategy, Realtime-History Matching
viewtopic.php?t=10811
by TJ
20 Jul 2019
Forum: MultiCharts
Topic: Heikin Ashi candles in DataStream 2
Replies: 5
Views: 1348

Re: Heikin Ashi candles in DataStream 2

See post #18
[FAQ] Multiple Time Frame, Multi-Data Analysis
viewtopic.php?t=10811
by TJ
20 Jul 2019
Forum: MultiCharts
Topic: Heikin Ashi candles in DataStream 2
Replies: 5
Views: 1348

Re: Heikin Ashi candles in DataStream 2

Signals are calculated at the end of bar (OOB).

Unless the data2 is closed before Data1, you will not get the realtime quote as the "Close" of data2.
by TJ
20 Jul 2019
Forum: MultiCharts
Topic: Heikin Ashi candles in DataStream 2
Replies: 5
Views: 1348

Re: Heikin Ashi candles in DataStream 2

Mixing non-time-based analysis with time-based analysis is always a challenge -- you have to reconcile the timing difference.
by TJ
09 Jul 2019
Forum: MultiCharts
Topic: Swing levels [SOLVED]
Replies: 5
Views: 1605

Re: Swing levels [SOLVED]

See post #6
Developing Your Strategy
viewtopic.php?t=11713
by TJ
09 Jul 2019
Forum: MultiCharts
Topic: can i specify the format of price?
Replies: 1
Views: 626

Re: can i specify the format of price?

hi got 2questions. 1. 2. is there function for round up or down for specific pricescale? like floor and ceiling functions in excel. if i use floor(333.4,0.25) then it gives back 333.25, and ceiling(333.4,0.25) then it gives back 333.5. thanks. In the Wiki, See Contents, Under -- 8 PowerLanguage Key...
by TJ
06 Jul 2019
Forum: MultiCharts
Topic: Stored market data [SOLVED]
Replies: 4
Views: 1192

Re: Stored market data [SOLVED]

Thanks TJ, that worked!

I guess I was to hasty.

Cheers,

Simon
I am glad to hear it works.
Good trading to you.
by TJ
06 Jul 2019
Forum: MultiCharts
Topic: Stored market data [SOLVED]
Replies: 4
Views: 1192

Re: Stored market data [SOLVED]

When you shut down the computer, make sure all the MC processes have closed.

MultiCharts operates in RAM; it flushes the quotes to your computer's database at the end of the session.
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: 99% cpu usage - instances that use data2 for auto trading [SOLVED]
Replies: 9
Views: 2924

Re: 99% cpu usage - instances that use data2 for auto trading [SOLVED]

As I wrote above, not using iog and have no time related code
It is possible you have a hidden infinite loop.

Have you tried one chart only ?

How does the CPU respond?
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: 99% cpu usage - instances that use data2 for auto trading [SOLVED]
Replies: 9
Views: 2924

Re: 99% cpu usage - instances that use data2 for auto trading [SOLVED]

What are the chart resolutions?

How much back history on the chart?
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: 99% cpu usage - instances that use data2 for auto trading [SOLVED]
Replies: 9
Views: 2924

Re: 99% cpu usage - instances that use data2 for auto trading [SOLVED]

Usually it is a coding error.

Are you running IOG?

Please check to see if you have a snippet that sends an order, then cancels it immediately, and resubmits it again.
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: 99% cpu usage - instances that use data2 for auto trading [SOLVED]
Replies: 9
Views: 2924

Re: 99% cpu usage - instances that use data2 for auto trading [SOLVED]

Do you have any PL code created drawing objects?

eg. Trendlines, arrows, texts, etc.,
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: Daten
Replies: 3
Views: 852

Re: Daten

If you switch it on, QM will automatically collect data for you even if you have not opened a chart.
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: Daten
Replies: 3
Views: 852

Re: Daten

Do you save your data or is it OFF with you?
Don't understand your question.
by TJ
24 Jun 2019
Forum: MultiCharts
Topic: Adding an unused input changing trade signal [SOLVED]
Replies: 5
Views: 1238

Re: Adding an unused input changing trade signal [SOLVED]

Your MaxBarsBack might be different.


Have you checked to see which trades are missing?
by TJ
21 Jun 2019
Forum: MultiCharts
Topic: ORB
Replies: 5
Views: 1155

Re: ORB

the problem lies with ORB system
ORB indicator is OK

das Problem liegt bei ORB System
ORB Indikator ist OK
Please use LiveChat with techsupport; they can sort this out for you.
by TJ
21 Jun 2019
Forum: MultiCharts
Topic: ORB
Replies: 5
Views: 1155

Re: ORB

You need to click the Compile button on the PLEditor.
by TJ
21 Jun 2019
Forum: MultiCharts
Topic: ORB
Replies: 5
Views: 1155

Re: ORB

Jimmyrakete:

This indicator and strategy require TWO data streams.

You can try adding another data stream to the chart.

eg. add a 5 min data and a 15 min data in the same chart.
by TJ
21 Jun 2019
Forum: MultiCharts
Topic: Compile error line 0, column 0 , How to solve it?
Replies: 9
Views: 3634

Re: Compile error line 0, column 0 , How to solve it?

Please ALWAYS post a screenshot of the error messages.
by TJ
20 Jun 2019
Forum: MultiCharts
Topic: Spontaneous corruption of database MC12
Replies: 11
Views: 3243

Re: Spontaneous corruption of database MC12

For the current MC version,
all the operating data are stored in RAM.
The data is flushed to your harddisk when you shut down MC.

As the first debug step, I would run the memory test to check the memory integrity.
by TJ
19 Jun 2019
Forum: MultiCharts
Topic: Help creating a "switch" in code
Replies: 9
Views: 1870

Re: Help creating a "switch" in code

What is your chart resolution?

Can you draw a diagram to illustrate your thoughts?

What are the "What-if" scenarios you will encounter?
by TJ
03 Jun 2019
Forum: MultiCharts
Topic: Last day of month code working with data2 ;
Replies: 5
Views: 1314

Re: Last day of month code working with data2 ;

I have tried your code.
I do not get your error message.

Please post your complete code if you need help debugging.
by TJ
02 Jun 2019
Forum: MultiCharts
Topic: Last day of month code working with data2 ;
Replies: 5
Views: 1314

Re: Last day of month code working with data2 ;

Please get a screenshot of the error message
by TJ
24 May 2019
Forum: MultiCharts
Topic: Value of a bar at a certain time from last session? [SOLVED]
Replies: 9
Views: 2215

Re: Value of a bar at a certain time from last session? [SOLVED]

Perfect, it works! Thank you very much for your appreciated help TJ.
Kind regards, LRP
You are welcome.

Where there is a will, there is a way.
by TJ
24 May 2019
Forum: MultiCharts
Topic: Value of a bar at a certain time from last session? [SOLVED]
Replies: 9
Views: 2215

Re: Value of a bar at a certain time from last session? [SOLVED]

Try this:

Code: Select all


var: price.at.1730(0), temp(0);

if time = 1730 then temp = Close;

if time = 2200 then price.at.1730 = temp;
by TJ
24 May 2019
Forum: MultiCharts
Topic: Value of a bar at a certain time from last session? [SOLVED]
Replies: 9
Views: 2215

Re: Value of a bar at a certain time from last session? [SOLVED]

Thanks a lot TJ, but as soon 17:30 is reached (today) I will get a new but unwanted value. Instead I do like to keep the close 17:30 value from yesterday until the end of the session. I tried a lot but can not find the solution to keep that 17:30 Close value from yesterday until the session ends to...
by TJ
24 May 2019
Forum: MultiCharts
Topic: IB disconnection issue
Replies: 6
Views: 1726

Re: IB disconnection issue

Thanks a lot TJ for the reply , as some of the discussion i looked at earlier were from 2012 i was hoping that it was something that was resolved already.

i will google the workaround.

Since the API came out, virtually nobody is asking about the reconnection problem again.
by TJ
24 May 2019
Forum: MultiCharts
Topic: IB disconnection issue
Replies: 6
Views: 1726

Re: IB disconnection issue

Hello Traders, I have just setup MC on autotrading nd have a problem with MC/IB connection at night , when i check the logs it seems that Multicharts tries to connect IB gateway at 5.31am every night 5.31AM Information "Connecting to TWS" and then it shows 5.31AM Error "Connectivity between IB and ...
by TJ
23 May 2019
Forum: MultiCharts
Topic: Value of a bar at a certain time from last session? [SOLVED]
Replies: 9
Views: 2215

Re: Value of a bar at a certain time from last session? [SOLVED]

OK, this is a simple requirement.

All you need is to set up a variable,
then at 1730 every day, assign the close price to the variable.
this variable is available for you to recall at any time in the future.

eg.

Code: Select all

var: price.at.1730(0);

if time = 1730 then price.at.1730 = Close;
by TJ
23 May 2019
Forum: MultiCharts
Topic: Value of a bar at a certain time from last session? [SOLVED]
Replies: 9
Views: 2215

Re: Value of a bar at a certain time from last session? [SOLVED]

A few questions:

1. Do you only need the data from the previous session?

2. Is this a recurring request?

3. Do you need a specific time? or the time is different for every request?

4. When do you make the request?
eg at 1730 today, you want to know the close of 1730 the previous day?
by TJ
22 May 2019
Forum: MultiCharts
Topic: Using the reserved word “TL_New” [SOLVED]
Replies: 14
Views: 3233

Re: Using the reserved word “TL_New” [SOLVED]

ps. ABC's sample code is for offline educational use only.

You should create the chart first, then apply the code.

It will not appear on a real-time chart that has previously been saved in a workspace.
by TJ
22 May 2019
Forum: MultiCharts
Topic: Using the reserved word “TL_New” [SOLVED]
Replies: 14
Views: 3233

Re: Using the reserved word “TL_New” [SOLVED]

Try this

Code: Select all

Variables: TLID(-1),
TxtID(-1);

TLID = TL_New(Date[10], Time[10], Close, Date, Time, Close);
TL_SetColor(TLID, red);
TL_SetSize(TLID, 4);
TL_SetStyle(TLID, 2);

TxtID = Text_New(Date, Time, Close, "Hello World!");
Text_SetStyle(TxtID, 0, 2);
by TJ
21 May 2019
Forum: MultiCharts
Topic: Using the reserved word “TL_New” [SOLVED]
Replies: 14
Views: 3233

Re: Using the reserved word “TL_New” [SOLVED]

Scaling should be "Same as Instrument".
by TJ
20 May 2019
Forum: MultiCharts
Topic: Using the reserved word “TL_New” [SOLVED]
Replies: 14
Views: 3233

Re: Using the reserved word “TL_New” [SOLVED]

What is your chart resolution?

ie the chart type and interval?
by TJ
20 May 2019
Forum: MultiCharts
Topic: Using the reserved word “TL_New” [SOLVED]
Replies: 14
Views: 3233

Re: Using the reserved word “TL_New” [SOLVED]

Please see posts #1 & #2
How to post codes
viewtopic.php?t=11713
by TJ
19 May 2019
Forum: MultiCharts
Topic: Data downloaded but request backfilling again
Replies: 11
Views: 2887

Re: Data downloaded but request backfilling again

Is this about the HSI symbol?

Make sure the session is set up correctly.
by TJ
19 May 2019
Forum: MultiCharts
Topic: Real time data cannot resume after lunch break
Replies: 11
Views: 2983

Re: Real time data cannot resume after lunch break

I'm not sure as IB don't has this option for selection
Please check the IB website; it has detail on how you can find out which server you are using, and how you can change it.
by TJ
18 May 2019
Forum: MultiCharts
Topic: Real time data cannot resume after lunch break
Replies: 11
Views: 2983

Re: Real time data cannot resume after lunch break

In Hong Kong, there is a lunch break between 12:00-13:00, even I set the session of HSI future correct, found the real time data cannot be resumed after lunch break, when close the MC and run again, then the real time data will resume, anyone can advise how to fit it? Which IB server are you using?...
by TJ
16 May 2019
Forum: MultiCharts
Topic: Watchlist Quote Doesn't Match Chart Quote
Replies: 16
Views: 3811

Re: Watchlist Quote Doesn't Match Chart Quote

AFTER HOURS MARKET
by TJ
14 May 2019
Forum: MultiCharts
Topic: Data downloaded but request backfilling again
Replies: 11
Views: 2887

Re: Data downloaded but request backfilling again

>7. Close MC and open again.

After closing MC,
check the Windows TaskManager,
make sure all MC processes are closed before restarting MC.
by TJ
14 May 2019
Forum: MultiCharts
Topic: Alert Function
Replies: 3
Views: 1197

Re: Alert Function

You can add this keyword to your alert message:

GetSymbolName
by TJ
13 May 2019
Forum: User Contributed Studies and Indicator Library
Topic: spread charts
Replies: 25
Views: 14104

Re: spread charts

Was this ever implemented? As others have said, indicators are no substitute for real composite symbols. Would massively improve the value of MultiCharts IMO.
Composite symbols are only valuable IF and ONLY IF you can trade them.

For that to happen, the symbol must come from your broker.
by TJ
13 May 2019
Forum: MultiCharts
Topic: Data downloaded but request backfilling again
Replies: 11
Views: 2887

Re: Data downloaded but request backfilling again

I downloaded 1 min chart data and saved, when I open a new workspace and use 1 min chart with same symbol in the new workspace, why the system needs backfilling data again?

What do you mean by "I downloaded 1 min chart data and saved,"?

What steps did you do?
by TJ
08 May 2019
Forum: MultiCharts
Topic: Data loading speed - minutes data [SOLVED]
Replies: 2
Views: 802

Re: Data loading speed - minutes data [SOLVED]

You see, TS, IB and OANDA are brokers; they are not real data providers. The quotes they provided are for order purposes.

If you need to load a lot of data in a hurry,
there is only one way to do it -- subscribe to a real data provider.
by TJ
04 May 2019
Forum: MultiCharts
Topic: Incorrect bar in MC 12 [SOLVED]
Replies: 17
Views: 4388

Re: Incorrect bar in MC 12 [SOLVED]

Already tried, but doesn’t work. The chart always displays “backfilling” and the “Reload All Data” option is dimmed. That means you are requesting too much data. You must be getting "Pace Violation" messages. IB has imposed limitations on how much you can download within a certain time. You can pur...
by TJ
04 May 2019
Forum: MultiCharts
Topic: Hang when switching timeframe
Replies: 2
Views: 956

Re: Hang when switching timeframe

Version? Build number?
by TJ
04 May 2019
Forum: MultiCharts
Topic: Real time data cannot resume after lunch break
Replies: 11
Views: 2983

Re: Real time data stopped when market opening

Which MC version /build number are you using?
by TJ
04 May 2019
Forum: MultiCharts
Topic: Incorrect bar in MC 12 [SOLVED]
Replies: 17
Views: 4388

Re: Incorrect bar in MC 12 [SOLVED]

You can reload the data.
You do not have to delete the cache.


https://www.multicharts.com/trading-sof ... ing_Charts
by TJ
03 May 2019
Forum: MultiCharts
Topic: How can I get the high and low of the previous day session
Replies: 10
Views: 5236

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

. . .

but it does not work.
I simply cannot find what the problem is....

Regards,

David
Please post a screen shot of your chart.

Please draw on the chart what you are looking for.
by TJ
28 Apr 2019
Forum: MultiCharts
Topic: Renko chart issue & question
Replies: 4
Views: 1597

Re: Renko chart issue & question

we are waiting many things about Renko : https://www.multicharts.com/pm/public/multicharts/issues/MC-1649 https://www.multicharts.com/pm/public/multicharts/issues/MC-1331 https://www.multicharts.com/pm/public/multicharts/issues/MC-845 My 2 cents: For trading purposes, it will be a lot easier to pro...
by TJ
28 Apr 2019
Forum: MultiCharts
Topic: Renko chart issue & question
Replies: 4
Views: 1597

Re: Renko chart issue & question

My 2 cents:

For trading purposes,
it will be a lot easier to program the Renko logic into your strategy than to rely on the built-in chart style.

YMMV
by TJ
24 Apr 2019
Forum: MultiCharts
Topic: Strategy is sending orders but they’re canceled immediately, why? No broker side problem [SOLVED]
Replies: 11
Views: 4067

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

. . . But the only button that I see to post the image is a small image icon and it only provide the img tags for the image url ( I don't see an option to upload an image here ). Anyway the alternative link of the image is https://futures.io/attachments/265243 Not everyone can see the picture at th...
by TJ
19 Apr 2019
Forum: MultiCharts
Topic: Power Language-Chart Trading Panel extension
Replies: 14
Views: 3259

Re: Power Language-Chart Trading Panel extension

I just wonder if anyone thinks this is useful idea: Having the ability to control certain aspects of the Chart Trading Panel from within Power Language. I would like the ability to: 1) disable Buy/Sell buttons under certain conditions 2) set the # of contracts based on market volatility Right now t...
by TJ
12 Apr 2019
Forum: MultiCharts
Topic: Data1 slower than data2, taking entries with IOG by using a data2 condition [SOLVED]
Replies: 5
Views: 1521

Re: Data1 slower than data2, taking entries with IOG by using a data2 condition [SOLVED]

If data1 has no new tick, how do you expect the order to be filled?

Do you want the order to be filled at the previous tick's price?
by TJ
04 Apr 2019
Forum: MultiCharts
Topic: Dynamic MaxBarsBack ? [SOLVED]
Replies: 6
Views: 1768

Re: Dynamic MaxBarsBack ? [SOLVED]

Why do you have less than 250 bars of data?
That's not a lot of data.

This is like going to a soccer match with 6 players.
You have to decide: do you want to play the game or not.
by TJ
04 Apr 2019
Forum: MultiCharts
Topic: Dynamic MaxBarsBack ? [SOLVED]
Replies: 6
Views: 1768

Re: Dynamic MaxBarsBack ? [SOLVED]

See post #1 & post #2
viewtopic.php?t=11713
by TJ
03 Apr 2019
Forum: MultiCharts
Topic: Question re: Plot function [SOLVED]
Replies: 4
Views: 1431

Re: Question re: Plot function [SOLVED]

This is how I would code this snippet: inputs: MA_Length (20), Sensitivity (1), Color_Up (green), Color_Down (red), Color_Neutral (yellow); variables: MA.Color(0), MA (0), MA_Rising (false), MA_Falling (false); MA = round(XAverage(Close, MA_Length), 1); MA_Rising = MA > MA[Sensitivity]; MA_Falling =...
by TJ
03 Apr 2019
Forum: MultiCharts
Topic: Question re: Plot function [SOLVED]
Replies: 4
Views: 1431

Re: Question re: Plot function [SOLVED]

For line plots,
you should always add an offset code:

Code: Select all


SetPlotColor[1]( 1, mycolor );
by TJ
12 Mar 2019
Forum: MultiCharts
Topic: [FIX] Multicharts failed to retrieve new eSignal symbol [SOLVED]
Replies: 6
Views: 1947

Re: Multicharts failed to retrieve new eSignal symbol [SOLVED]

You should use LiveChat to let tech support see this problem.
by TJ
11 Mar 2019
Forum: MultiCharts
Topic: What happens with continous contracts? [SOLVED]
Replies: 5
Views: 1891

Re: What happens with continous contracts? [SOLVED]

Hi Guys
At IB-Plattform (ES, NQ, YM) they are shown and works but not anymore at MC 12R5!
Any ideas?
Kind regards, LRP
Which one you are talking about?

IB supplied continuous contract?

or MultiCharts custom future?
by TJ
11 Mar 2019
Forum: MultiCharts
Topic: Need a little bit of help
Replies: 4
Views: 1084

Re: Need a little bit of help

Hello I was wondering if anyone can help me with this issue Let's make an example with simple numbers: If Crude Oil is trading at 55.40 then it goes to 55.39, 55.38, 55.37, then it starts to go up again, 55.38, 55.39 55.40 Once it trades 55.40 again that is when I want the script to generate the Lo...
by TJ
11 Mar 2019
Forum: MultiCharts
Topic: Need a little bit of help
Replies: 4
Views: 1084

Re: Need a little bit of help

What is your chart resolution?
The numbers in the example, do you mean bar closes? or ticks?
by TJ
08 Mar 2019
Forum: MultiCharts
Topic: where to put SetExitOnClose in the signal code?
Replies: 3
Views: 1025

Re: where to put SetExitOnClose in the signal code?

https://www.multicharts.com/discussion/viewtopic.php?t=10811 post 6), but where to put the SetExitOnClose in the signal? Have you read the RED colored highlights in the post? you mean this? Note When automating a strategy, you will not want to use SetExitOnClose as a way to make sure that all of yo...
by TJ
08 Mar 2019
Forum: MultiCharts
Topic: where to put SetExitOnClose in the signal code?
Replies: 3
Views: 1025

Re: where to put SetExitOnClose in the signal code?

viewtopic.php?t=10811
post 6), but where to put the SetExitOnClose in the signal?

Have you read the RED colored highlights in the post?
by TJ
07 Mar 2019
Forum: MultiCharts
Topic: how to set stop trading time before market close?
Replies: 2
Views: 1188

Re: how to set stop trading time before market close?

in backtest, i found that some position are entered even after market close. how to set the strategy so that say it won't enter new position, and close out all existing position, 10 minutes before close. See post #15 [FAQ] Autotrade / Backtest / Optimization https://www.multicharts.com/discussion/v...
by TJ
01 Mar 2019
Forum: MultiCharts
Topic: IB TWS historical data request pacing violation
Replies: 13
Views: 8412

Re: IB TWS historical data request pacing violation

Pacing violations should go away as soon as MC plug-in implements the latest IB API.
Pacing violations has nothing to do with the API.

Pacing violation means you are requesting too much data, more than you are allowed.

You can pay more money to get more data.
by TJ
26 Feb 2019
Forum: MultiCharts
Topic: Wrong Backtesting Result [SOLVED]
Replies: 7
Views: 8896

Re: Wrong Backtesting Result [SOLVED]

What MC version and build number?

What is your chart resolution?
by TJ
22 Feb 2019
Forum: MultiCharts
Topic: Show historical order name
Replies: 12
Views: 3585

Re: Show historical order name

We trade futures LOL . . .
by TJ
21 Feb 2019
Forum: MultiCharts
Topic: crosses_above vs crosses above [SOLVED]
Replies: 2
Views: 1496

Re: crosses_above vs crosses above [SOLVED]

Any difference between

Code: Select all

crosses_above
and

Code: Select all

crosses above
?

No difference.

Same as

CROSS ABOVE
by TJ
19 Feb 2019
Forum: MultiCharts
Topic: side of the last trade [SOLVED]
Replies: 3
Views: 1343

Re: side of the last trade [SOLVED]

The best info you can get are from the following keywords:

InsideAsk
InsideBid



For explanations,
go to the Wiki,
look under
PowerLanguage Keyword Reference
Quote Fields‎ (36 P)
by TJ
17 Feb 2019
Forum: MultiCharts
Topic: NumEvenTrades in Signal
Replies: 3
Views: 1135

Re: NumEvenTrades in Signal

Hi,
when in a signal I try to print (NumEvenTrades) return 0 or a strange number... Where Iìm wrong?

Thanks
Riccardo

What number are you expecting?
by TJ
15 Feb 2019
Forum: MultiCharts
Topic: Rolling Crude Futures
Replies: 24
Views: 6753

Re: Rolling Crude Futures

Crude rollover is unlike other futures, I hope you do understand.
by TJ
14 Feb 2019
Forum: MultiCharts
Topic: Rolling Crude Futures
Replies: 24
Views: 6753

Re: Rolling Crude Futures

Have you tried exiting MC and re-start it?
by TJ
14 Feb 2019
Forum: MultiCharts
Topic: Rolling Crude Futures
Replies: 24
Views: 6753

Re: Rolling Crude Futures

Are you talking about a Custom Future that you created in MultiCharts?
by TJ
14 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

ps. in a heavy computation environment, eg. the MultiCharts, you need REAL threads and REAL CPUs. Those extra virtual threads do not help. Ok, i did some reseach, i understand what you mean, what about extra cores? im sure they will help? You need REAL cores for REAL work. Think about it this way ....
by TJ
14 Feb 2019
Forum: MultiCharts
Topic: mail alert with stocks information
Replies: 4
Views: 1407

Re: mail alert with stocks information

Yahoo or Google Finance can send you the closing price you need.
by TJ
14 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

Hi TJ, thanks for the advice. Would you say that upgrading to a ryzen 7 2700 compared to a i7 8700 with its 2 extra cores and 4 threads better for running multiple windows and tons of charts? You already have a very powerful computer. I am still using an Intel Q6600 . . . 1st gen Quadcore, with 8 G...
by TJ
13 Feb 2019
Forum: MultiCharts
Topic: Auto-Trading with Interactive Brokers TWS - First Order of the Day not Executed [SOLVED]
Replies: 5
Views: 2056

Re: Auto-Trading with Interactive Brokers TWS - First Order of the Day not Executed [SOLVED]

Hi, I have Interactive Brokers TWS connected to MultiCharts for automated trading. The first automated order (market) of the day goes into TWS order queue but I have to execute it manually (right click on the order in TWS, "Transmit"), while the following orders are correctly executed automatically...
by TJ
13 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question


. . . i have 3 monitors.
You can open a new MC instance for each monitor.
That should reduce the Windows graphics objects limitation, and make the Windows operation more stable.
by TJ
13 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

m system seems to run smoothly with 3 windows opened, when i have 6 it starts lagging and hanging, could it be due to me only have a 4 core processor? those 3 windows have about the same set up in charts as the other 3. Please post a screenshot of your TaskManager. How many monitors do you have?
by TJ
13 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

also does a graphics card matter much?
MultiCharts does not utilize 3D or game-related graphics features. An expensive graphics card will not help.
by TJ
13 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

All my charts are time based. no anti virus nor firewall nor loggers. Not running as admin. i noticed my cpu usage sometimes run up to 90+ percent when loading charts. Would a i7-8700 6 core with 32 ram solve this issue? When loading charts . . . of course it will run up to 90+ percent. You want yo...
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

Which Windows version?


What other programs you are running?

Anti-virus?
Firewall?
Loggers?

Are you running MC as administrator?
Have you designated MC and all its components as "Safe" programs.
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

How many charts? What are the resolutions? How much back history? How many indicators? Any drawings in the indicators? Thanks for reply, I have around 30 charts on each window, resolutions ranged from 15day to low of 30 mins. back history on intraday timeframes are around one week, higher timeframe...
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: Newbie questions [SOLVED]
Replies: 5
Views: 1433

Re: Newbie questions [SOLVED]

Greetings MC Community, I have spent several hours toying around with MC and PL and have a few things I haven't been able to figure out yet but thought I would by now. I've tried to find answers to these with no luck. Any help is appreciated. 1. How are negative numbers coded in PL? I know the "-" ...
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: Newbie questions [SOLVED]
Replies: 5
Views: 1433

Re: Newbie questions [SOLVED]

You can build your analysis with this basic logic

Code: Select all


IF condition1 = false
then . . .
To add multiple conditions:

Code: Select all


IF condition1 = false
or condition2 = false
or condition3 = false
then . . .
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: hardware question
Replies: 22
Views: 4670

Re: hardware question

How many charts?
What are the resolutions?
How much back history?

How many indicators?
Any drawings in the indicators?
by TJ
12 Feb 2019
Forum: MultiCharts
Topic: Newbie questions [SOLVED]
Replies: 5
Views: 1433

Re: Newbie questions [SOLVED]

See post #1 & post #2
[FAQ] How to Post Codes
viewtopic.php?t=11713
by TJ
10 Feb 2019
Forum: MultiCharts
Topic: Traders Tip's S&C Magazine PowerLanguage Code for Multicharts?
Replies: 3
Views: 1102

Re: Traders Tip's S&C Magazine PowerLanguage Code for Multicharts?

For Example 2019 March Issue: . . . This is not basic EL codes. They have the OOPL extension, which is only usable in TS v9+. The language is complex, it is for the advanced level programmers only. Because of the difference in programming architecture, there is no easy way to make a simple and dire...
by TJ
06 Feb 2019
Forum: MultiCharts
Topic: market order Vs Limit order BTST vs Real
Replies: 3
Views: 1022

Re: market order Vs Limit order BTST vs Real

See post #1 & post #2
1. [FAQ] How to Post Codes
viewtopic.php?t=11713
by TJ
05 Feb 2019
Forum: MultiCharts
Topic: Don't Use Multicharts with MBTrading
Replies: 7
Views: 1848

Re: Don't Use Multicharts with MBTrading

The problem you describe does not make sense. The different between MBT and IB or other brokers is the interface. The MultiCharts core is the same. Your indicators or strategies are merely scripts that execute line-by-line. If an order that was not executed in MBT, it will not execute in IB either. ...
by TJ
05 Feb 2019
Forum: MultiCharts
Topic: market order Vs Limit order BTST vs Real
Replies: 3
Views: 1022

Re: market order Vs Limit order BTST vs Real

I am trying to generate an order in Back testing to be Buy at market, but I would like that once the optimization is made the order is executed in the real market as follows: buy at insidebid limit, and if it is not executed in 1 second the purchase is made to market, this in order to try not to at...
by TJ
04 Feb 2019
Forum: MultiCharts
Topic: Global Variables - timing issue [SOLVED]
Replies: 3
Views: 1110

Re: Global Variables - timing issue [SOLVED]

Thanks for that TJ....so always a one bar delay. I think I can live with that. So one very important issue is to insure the receiving chart has the exact same time/tick interval..... Or the receiving chart must be equal to or LOWER than the sending chart in terms of interval. Timing-based analysis ...
by TJ
03 Feb 2019
Forum: MultiCharts
Topic: Global Variables - timing issue [SOLVED]
Replies: 3
Views: 1110

Re: Global Variables - timing issue [SOLVED]

I am trying to pass indicator values from a workspace to another workspace and another chart. How can I be assured my GVGet calls are getting the latest GVSet data since they are both firing off at the Close of the bar with the same bar interval ? In other words if the GVGet fires before the GVSet,...
by TJ
31 Jan 2019
Forum: MultiCharts
Topic: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]
Replies: 9
Views: 4068

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

With last I mean the Latest (today is 31st , I installed it yesterday). Version 12.0 Release (Build 17586). ... Looking at this...I suppose that it is only working in realtime, is that correct? So the only way to test if it work, is by running it in realtime? It depends on how you program your code...
by TJ
31 Jan 2019
Forum: MultiCharts
Topic: DefineDLLFunc: "GlobalVariable.dll", ... [SOLVED]
Replies: 9
Views: 4068

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

Hi. I also just imported GV+2-2.ELD but I'm still unable to communicate between 2 charts. I just upgraded to the last version of multichart so I suppose that every required dll are already embedded. ... What is "the last version of multichart" ? Please go to your MultiCharts and copy the version nu...
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Historical vs Streaming Analysis
Replies: 13
Views: 2545

Re: Historical vs Streaming Analysis

If you use a magnifying glass, you see details. If you use a microscope, you see more details. If you use an electron microscope, you see even more details. If you found yourself seeing too much detail, you should take a step back, and look again. Different computers can show different results, not ...
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Historical vs Streaming Analysis
Replies: 13
Views: 2545

Re: Historical vs Streaming Analysis

No, I am not offended by your question. This has been asked many times. Think about the distance the tick has to travel from the exchange to your computer: Exchange-->internet provider-->IQFeed-->internet provider-->your router-->your computer You can do a PING test to check your latency. ps. Also l...
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Historical vs Streaming Analysis
Replies: 13
Views: 2545

Re: Historical vs Streaming Analysis

I haven't and that seems like a good place to start. But.. if the exchange matches historical but not streaming then I still don't have a solution. Historic data is the bench. Streaming data is always different. ALWAYS. It is the same with all the data providers. And that would be fine. If the sale...
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Historical vs Streaming Analysis
Replies: 13
Views: 2545

Re: Historical vs Streaming Analysis

Have you compared your data with the exchange's data? I haven't and that seems like a good place to start. But.. if the exchange matches historical but not streaming then I still don't have a solution. Historic data is the bench. Streaming data is always different. ALWAYS. It is the same with all t...
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Historical vs Streaming Analysis
Replies: 13
Views: 2545

Re: Historical vs Streaming Analysis

Have you compared your data with the exchange's data?
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: EL Collections - 64 bit [SOLVED]
Replies: 6
Views: 3753

Re: EL Collections - 64 bit [SOLVED]

Where can I find the ELCollections.ELD ? I have the DLL, but not the ELD.

Please see MAZINGUER post above.
by TJ
30 Jan 2019
Forum: MultiCharts
Topic: Percent Trailing Stop Using Data2
Replies: 3
Views: 1397

Re: Percent Trailing Stop Using Data2

You can only trade on data1.

You should always use the fastest fractal as data1.
by TJ
29 Jan 2019
Forum: MultiCharts
Topic: Data1 & Data 2 - IOG backtest vs real life trading
Replies: 1
Views: 790

Re: Data1 & Data 2 - IOG backtest vs real life trading

I have a problem which I need help - and have not found other articles about it. I have two test strategies with more or less the same problem: I use 15 min data in data1, and 1 min data in data 2, same symbol and exchange. I have "Enable Intra day order generation" turned on. The trigger is an ind...
by TJ
27 Jan 2019
Forum: MultiCharts
Topic: Will inserting a print statement after stipulating a buy order slow the buy order down? [SOLVED]
Replies: 2
Views: 953

Re: Will inserting a print statement after stipulating a buy order slow the buy order down? [SOLVED]

Hi guys, I'd like to deploy some diagnostic print statements to examine the data and conditions that lead to my order entries during autotrading. However, execution speed and memory usage is somewhat of a concern for me, so I wanted to pose the following question: When my PL script stipulates a buy...
by TJ
25 Jan 2019
Forum: MultiCharts
Topic: How do I reference particular markets
Replies: 6
Views: 1328

Re: How do I reference particular markets

. . .

When I tried typing in "If InStr(Symbol,"@CL") > 0 then XXX the code would not verify. Including categorry()=0 did not help.

Sorry, my coding skills are rather poor :(

Please go to the Wiki,

look up the keyword InStr, and study the definition and usage examples.
by TJ
23 Jan 2019
Forum: MultiCharts
Topic: Array copy and sort question
Replies: 6
Views: 1876

Re: Array copy and sort question

. . .

is this the section you were asking for?

. . .
I am not asking for anything.
I am merely suggesting to you, if you are looking for coding help, you need to post your codes. Otherwise, people do not know how to help you.
by TJ
23 Jan 2019
Forum: MultiCharts
Topic: Array copy and sort question
Replies: 6
Views: 1876

Re: Array copy and sort question

Please post the complete code relating to the array.

ie. including the declarations.
by TJ
19 Jan 2019
Forum: MultiCharts
Topic: Text, Arrows, Lines in Subcharts [SOLVED]
Replies: 7
Views: 1936

Re: Text, Arrows, Lines in Subcharts [SOLVED]

I understand all of that...... No you don't. If you do, you will not have any problems. These are not new. You are not the first person to use these features; they have been around for umpteenth umpteenth years. They are not unusual or obscure keywords. Thousands of people are using these keywords ...
by TJ
18 Jan 2019
Forum: MultiCharts
Topic: Text, Arrows, Lines in Subcharts [SOLVED]
Replies: 7
Views: 1936

Re: Text, Arrows, Lines in Subcharts [SOLVED]

So using Arw_New_self_s would do it ? However, Arw_SetLocation_s (ObjectID, BarDate, BarTime_s, PriceValue) indicates a Price, not an indicator value. So this is confusing...as the arrow should be associated with the indicator value, not the price on the chart. When you are creating an object (ie t...
by TJ
17 Jan 2019
Forum: MultiCharts
Topic: Text, Arrows, Lines in Subcharts [SOLVED]
Replies: 7
Views: 1936

Re: Text, Arrows, Lines in Subcharts [SOLVED]

I'd like the ability in PowerLanguage to place text and graphics objects on subcharts that contain indicators. Does anyone else think this has value ? Is there any way this can be done now....via DLL's or other methods ? MultiCharts has this ability since . . . gawd . . . a long long time ago. Plea...
by TJ
17 Jan 2019
Forum: MultiCharts
Topic: how can I syn the data feed? [SOLVED]
Replies: 2
Views: 954

Re: how can I syn the data feed? [SOLVED]

Please go to the top of this MultiCharts webpage,
At the top of the page, look for the SUPPORT tab.
You can find the link to video tutorials.
by TJ
15 Jan 2019
Forum: MultiCharts
Topic: function for uptrend or downtrend
Replies: 2
Views: 952

Re: function for uptrend or downtrend

HI All, Is there any function within the MC that can determine whether a trendline is in uptrend or downtrend? I want to develop a strategy that make long/short decision based on whether some indicators (such as ADX in DMI) is in uptrend or downtrend. Tks. Martin When ADX > ADX[1], the trend line i...
by TJ
14 Jan 2019
Forum: MultiCharts
Topic: scaling problem [SOLVED]
Replies: 4
Views: 1238

Re: scaling problem [SOLVED]

From the photo above,
Look under the General Section
Change the "No. of digitals after decimal"
by TJ
13 Jan 2019
Forum: MultiCharts
Topic: how do I view in a chart the buy and sell of the strategy? [SOLVED]
Replies: 9
Views: 2263

Re: how do I view in a chart the buy and sell of the strategy? [SOLVED]

Hello everyone I have a question: how do I view in a chart the buy and sell of the strategy? In some charts I can view them in others not Can you explain more on what you are looking for? Do you have screen shots? Which chart you can view? and which chart you cannot view??? Please be specific with ...
by TJ
11 Jan 2019
Forum: MultiCharts
Topic: Feature Request: Wicks for Line Break Charts
Replies: 3
Views: 1031

Re: Feature Request: Wicks for Line Break Charts

You can always program the logic into your strategy. Thanks TJ any chance you can give more information about how I would accomplish that? MultiChart's PowerLanguage is an English-like programming language. You can write your logic into your strategy. See post #6 for ideas https://www.multicharts.c...
by TJ
11 Jan 2019
Forum: MultiCharts
Topic: Feature Request: Wicks for Line Break Charts
Replies: 3
Views: 1031

Re: Feature Request: Wicks for Line Break Charts

I have been using the software IRT by Linnsoft for a long time but recently have been using Multicharts as well. I would love to use it exclusively however the only thing that always keeps from switching completely is the fact that I trade off Linebreak charts. With IRT I have the ability to get th...
by TJ
11 Jan 2019
Forum: MultiCharts
Topic: marketposition is unavailable in indicator [SOLVED]
Replies: 2
Views: 961

Re: marketposition is unavailable in indicator [SOLVED]

Please go to the Wiki

Under the section:
PowerLanguage Keyword Reference

Look for:
Strategy Position‎ (47 P)

You will find the keyword:
MarketPosition

It has answers to all your questions.
by TJ
09 Jan 2019
Forum: MultiCharts
Topic: Globalvariable.dll 32 bit and 64 bit
Replies: 4
Views: 1396

Re: Globalvariable.dll 32 bit and 64 bit

See this thread:

[Advanced Topic] MultiCharts 64 bit Resources (3rd Party)
viewtopic.php?t=10094
by TJ
07 Jan 2019
Forum: MultiCharts
Topic: Chart in foreground
Replies: 5
Views: 1212

Re: Chart in foreground

Thank you for your fast respond. Unfortunately, it doesn't work for me. When I click on the chart I see only options: Format, Remove Series and Visual Order. There is no "Bring to Front" button.
Sorry I missed a step.
Please see the above post again; the error is corrected.
by TJ
07 Jan 2019
Forum: MultiCharts
Topic: Chart in foreground
Replies: 5
Views: 1212

Re: Chart in foreground

Right Click on the chart,
a window will pop up,
--> Select "Visual Order...",
highlight the symbol name,
Click the "Bring to Front" button.
by TJ
04 Jan 2019
Forum: MultiCharts
Topic: Pre-Built Signal Documentation
Replies: 2
Views: 989

Re: Pre-Built Signal Documentation

What kind of documentation are you looking for? Is there a specific question you have? Those canned strategies have been around for ages. They are the same as the old TS strategies. There are lots of websites and youtube video on those signals. In the mean time, if you need specific help, please fee...
by TJ
02 Jan 2019
Forum: MultiCharts
Topic: Same Strategy to same symbols but incorrect position size in portfolio trader [SOLVED]
Replies: 6
Views: 1566

Re: Same Strategy to same symbols but incorrect position size in portfolio trader [SOLVED]

I am not sure if IOG is supported in your version of Portfolio trader.
I know in the older Portfolio trader, IOG is not supported. You should check with tech support to verify.
by TJ
27 Dec 2018
Forum: MultiCharts
Topic: Attached Orders in a strategy - OCO Interactive Brokers
Replies: 4
Views: 1174

Re: Attached Orders in a strategy - OCO Interactive Brokers

Wow - thanks for that TJ.
So Once can execute statements once conditionally or unconditionally.

Yes.
by TJ
27 Dec 2018
Forum: MultiCharts
Topic: Attached Orders in a strategy - OCO Interactive Brokers
Replies: 4
Views: 1174

Re: Attached Orders in a strategy - OCO Interactive Brokers

MultiCharts needs to update the Keyword definition. This is not in the Wiki or the PLE. ONCE (Reserved Word) Reserved word used to specify that the EL statement or begin-end block that follows will only be executed once . Syntax ONCE ( [ optional boolean expression ] ) { follow by single statement o...
by TJ
27 Dec 2018
Forum: MultiCharts
Topic: MULTICHARTS 12.0 RELEASE 3
Replies: 47
Views: 14090

Re: MULTICHARTS 12.0 RELEASE 3

Hi, i installed the latest MC12 Release 3 and now "display entire series" is not working as in version 11. Just setup a simple chart, 1 minute TF, latest 20 days. Do "format -> display entire series". MC11 show the whole series without an horizontal scrollbar at the bottom of the chart windows MC12...
by TJ
21 Dec 2018
Forum: MultiCharts
Topic: Searching thru a library of script code
Replies: 10
Views: 2096

Re: Searching thru a library of script code

I tried, but I was unable to login to the Project Management portal....and I could not reset my password.
Something is wrong here....it didn't recognize my Userid.
Just in case you are not aware,
the project management is a different program. It does not use the same userid/password as this forum.
by TJ
21 Dec 2018
Forum: MultiCharts
Topic: Export/Import Issues, red checkmarks, and "Archive is Empty" error
Replies: 4
Views: 1112

Re: Export/Import Issues, red checkmarks, and "Archive is Empty" error

Hi TJ- I updated after your response so that I could answer that I was on build 3 of th emost current release on both my systems (exporting and importing computers). However, the problem persists unfortunately. Any help is much appreciated! "The most current release" has no meaning. You should go t...
by TJ
19 Dec 2018
Forum: MultiCharts
Topic: Which Computer to Buy?
Replies: 25
Views: 7101

Re: Multicharts 13 - when?

... So far I've been very happy with my old quad-core Intel i7-4600M quad core processor. .... thanks for the information! I have an i-7 2600K 3.4 GHz. Here I think on what to upgrade. It is a pity there is no reference example on the forum for measuring different processors at the time of optimiza...
by TJ
18 Dec 2018
Forum: MultiCharts
Topic: Cyrillic in the PowerLanguage Editor [SOLVED]
Replies: 6
Views: 1958

Re: Cyrillic in the PowerLanguage Editor [SOLVED]

Thanks for trying to help! I actively use comments. Unfortunately, the problem is different - after switching the input keyboard language (from English to Russian) - no Cyrillic character can be physically entered into the editor. The editor itself flickers at the same time (I think it just flushes...
by TJ
18 Dec 2018
Forum: MultiCharts
Topic: Cyrillic in the PowerLanguage Editor [SOLVED]
Replies: 6
Views: 1958

Re: Cyrillic in the PowerLanguage Editor [SOLVED]

At a minimum - write comments in Russian. Transliteration annoys me. As a maximum - to name variables in Russian. P.S. Sorry for my english. it's all Google Translate. I'm worse :) You can write comments in anything you want. MC ignores everything after // Not sure about the variable name. You can ...
by TJ
18 Dec 2018
Forum: MultiCharts
Topic: Cyrillic in the PowerLanguage Editor [SOLVED]
Replies: 6
Views: 1958

Re: Cyrillic in the PowerLanguage Editor [SOLVED]

You are talking cryptic, not Cyrillic.
What exactly do you want to do?
by TJ
13 Dec 2018
Forum: MultiCharts
Topic: Plotting Text above/below bar where signal occurs
Replies: 3
Views: 1236

Re: Plotting Text above/below bar where signal occurs

You can use the keyword:

TEXT_NEW


There are coding syntax examples in the wiki.
by TJ
12 Dec 2018
Forum: MultiCharts
Topic: Last bar one Chart twice
Replies: 3
Views: 1018

Re: Last bar one Chart twice

MC version? Build number?
Data supplier?
Symbol?
Exchange?
Session setting?
Chart resolution?
by TJ
10 Dec 2018
Forum: MultiCharts
Topic: Which Computer to Buy?
Replies: 25
Views: 7101

Re: Multicharts 13 - when?

I do not need it - I am not a scientific institute. I have a simple application question - does it make sense to buy AMD Ryzen Threadripper or not?

I always tell people -- Buy the most expensive computer you can AFFORD.

YMMV
by TJ
09 Dec 2018
Forum: MultiCharts
Topic: Which Computer to Buy?
Replies: 25
Views: 7101

Re: Multicharts 13 - when?

Hyperthread, or virtual core, is ONLY useful for light-duty parallel processing. Think of the CPU as the V-12 engine you have in your Ferrari. What virtual-core does is to cut the engine in half so that you have two 6-cylinder engines. You might have two engines, but you will not have more power tha...
by TJ
09 Dec 2018
Forum: MultiCharts
Topic: Which Computer to Buy?
Replies: 25
Views: 7101

Re: Multicharts 13 - when?

Dear developers! Can you share the approximate timing of the release the Multicharts 13? Will it provide full support for parallel computing of genetic optimization (acceleration of work due to multiple processor cores)? Go to your TaskManager, If you see only ONE core is used, the program is NOT d...
by TJ
27 Nov 2018
Forum: MultiCharts
Topic: function in C# dll not found
Replies: 5
Views: 1989

Re: function in C# dll not found

MC version? Build number?
by TJ
27 Nov 2018
Forum: MultiCharts
Topic: Elder Volume Force Index %
Replies: 4
Views: 1602

Re: Elder Volume Force Index %

What do you mean by "Elder Volume Force Index in % mode"?

How is that calculated?
by TJ
27 Nov 2018
Forum: MultiCharts
Topic: Elder Volume Force Index %
Replies: 4
Views: 1602

Re: Elder Volume Force Index %

See post #1 & #2
viewtopic.php?t=11713
by TJ
26 Nov 2018
Forum: MultiCharts
Topic: Need help on live trading vs. backtest (DATA1/DATA2)
Replies: 4
Views: 1422

Re: Need help on live trading vs. backtest (DATA1/DATA2)

Hi TJ, thanks for the quick reply. Unfortunately I have kind of the opposite problem. I want my system to autotrade according to my DATA1 session template which is 24/5. But the trades are not executed during hours which are not part of the DATA2 session template. KISS Make the Data2 24/5 as well. ...
by TJ
25 Nov 2018
Forum: MultiCharts
Topic: Need help on live trading vs. backtest (DATA1/DATA2)
Replies: 4
Views: 1422

Re: Need help on live trading vs. backtest (DATA1/DATA2)

See post #15
[FAQ] Limit the Time of Autotrade
viewtopic.php?t=10811
by TJ
24 Nov 2018
Forum: MultiCharts
Topic: Suggestion for multiple currency pairs
Replies: 1
Views: 718

Re: Suggestion

You can take a look at the Portfolio Trader.
by TJ
23 Nov 2018
Forum: MultiCharts
Topic: IBP on FlexRenko Chart
Replies: 4
Views: 1750

Re: IBP on FlexRenko Chart

When you put a Time-Based analysis on a Non-Time-Based chart,
the outcome is always unpredictable.
by TJ
16 Nov 2018
Forum: MultiCharts
Topic: TS Data not storing Data slow to load
Replies: 33
Views: 9276

Re: TS Data not storing Data slow to load

Henry (or other users),

If i export a qmd file will it include the most recent data that’s held in the cache? Or will it only hold the data since the last restart (or last flush, if Mc12).

Will
You must exit MC in order to flush the cache to the database.
by TJ
14 Nov 2018
Forum: MultiCharts
Topic: Indicator vs Signal Max bars referenced Difference [SOLVED]
Replies: 2
Views: 886

Re: Indicator vs Signal Max bars referenced Difference [SOLVED]

Hello, I have an indicator and a function that I'm using in parallel with a signal. I can't seem to figure out why the signal usually sees the first buy signal before the indicator does.. they are exactly the same code? Is this known? Is code processed differently in signals vs indicators? Thanks T...
by TJ
12 Nov 2018
Forum: MultiCharts
Topic: Deconstructing RSI Indicator Script [SOLVED]
Replies: 6
Views: 2321

Re: Deconstructing RSI Indicator Script [SOLVED]

MaxBarsBack has stumbled many people. MaxBarsBack is a misnomer. Most people have a misunderstanding of its purpose. MaxBarsBack simply means the MINIMUM number of bars required to calculate your indicators. If you have a 200 EMA, the minimum number of bars required is 200. ie. you will get the firs...
by TJ
12 Nov 2018
Forum: MultiCharts
Topic: Deconstructing RSI Indicator Script [SOLVED]
Replies: 6
Views: 2321

Re: Deconstructing RSI Indicator Script [SOLVED]

How does the Currentbar "screw up" your calculation?
Are you looking for RSI in the first 200 bars of the chart?
by TJ
12 Nov 2018
Forum: MultiCharts
Topic: Deconstructing RSI Indicator Script [SOLVED]
Replies: 6
Views: 2321

Re: Deconstructing RSI Indicator Script [SOLVED]

Have you done an audit of the results?
Did the RSI script make any errors?

Go to advanced search