Search found 7743 matches

by TJ
23 Mar 2014
Forum: MultiCharts
Topic: Plot Lowest Price on Market Scanner
Replies: 4
Views: 1054

Re: Plot Lowest Price on Market Scanner

Third step:

DO NOT USE generic variable names. (ie. value1, value2, condition1, etc.,)
by TJ
23 Mar 2014
Forum: MultiCharts
Topic: Plot Lowest Price on Market Scanner
Replies: 4
Views: 1054

Re: Plot Lowest Price on Market Scanner

May I have your suggestion how to solve empty issue? Thanks. First ... check your session template... make sure it does not cover any non-trading time. e.g 24 hr template will give you a lot of zero value periods. Second ... put the data on a chart and visually check to see if there are any bad tic...
by TJ
23 Mar 2014
Forum: MultiCharts
Topic: Plot Lowest Price on Market Scanner
Replies: 4
Views: 1054

Re: Plot Lowest Price on Market Scanner

Hi, I would like to find out highest and lowest price within specific period. I insert study on Market Scanner. I can see highest price, however, I can only see 0 for lowest. My code is very simple as below: value1=close; value10=highest(value1,200); value11=Lowest(value1,200); plot1(value10); plot...
by TJ
21 Mar 2014
Forum: MultiCharts
Topic: Percentage Charts
Replies: 3
Views: 1598

Re: Percentage Charts

You can easily plot a spread chart with the included indicators " Spread - Diff " or " Spread - Ratio ". It is a simple 2-line code. If you are into any analysis, you would probably not be satisfied with a plain line. It is most likely that you would want to add some visual/aural alerts to it; eg. w...
by TJ
21 Mar 2014
Forum: MultiCharts
Topic: Intrabar Ordergeneration - question
Replies: 6
Views: 1510

Re: Intrabar Ordergeneration - question

Hi Andrew i found out, that the values for highest, lowest and average are calculated new for each tick with in the 10min bar. Thats why i dont get orders. What i need is, highest(h,10) should only be calculated at the end of the 10min Bar. The average only with the close of the 10Min Bar. The pric...
by TJ
20 Mar 2014
Forum: MultiCharts
Topic: Attention Volume Profile Users
Replies: 5
Views: 1593

Re: Attention Market Profile Users

Actually the thread title should be
Attention Volume Profile Users
::
Corrected. Thanks.
by TJ
19 Mar 2014
Forum: MultiCharts
Topic: Error: Missing data on a function to draw a trend line ??? [SOLVED]
Replies: 4
Views: 1119

Re: Error: Missing data on a function to draw a trend line ? [SOLVED]

Image

This means "There is no such a drawing object."
by TJ
19 Mar 2014
Forum: MultiCharts
Topic: Error: Missing data on a function to draw a trend line ??? [SOLVED]
Replies: 4
Views: 1119

Re: Error: Missing data on a function to draw a trend line ? [SOLVED]

If you have looked at my codes,
you will recall that I always initialize a drawing object variable to -1.

Code: Select all

var:
TL(-1);

ps. this is not the problem, but it helps you to debug.
by TJ
18 Mar 2014
Forum: MultiCharts
Topic: How much computer power do i need to run this back testing
Replies: 2
Views: 818

Re: How much computer power do i need to run this back testi

:: Or what computing power do i need to be able to run this test? I can tell you... no powerful computer is ever powerful enough. 30 years ago, before IBM PC days, people used a 1 mHz Z80 or MC6800 and would run tests for days. 30 years later, people are using multi core, multi CPU Xeons and run te...
by TJ
18 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

Dear Sir, I didnt understand it, Thats what i had at the begining, i used month but it needs an input.. its needs a date. and thats where i get all consfused coz i use current date, which i then convert to appropriate format, and basically im still where i started That initial code is what i still ...
by TJ
18 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

Dear Sir,
Yes, if you look at my initial code, that is what i have used
I have used Month
But i cannot get it working
All i want to do is, get a numerical value (1-12) corresponding to the month of the current bar
Have you followed my instruction in post #10?
by TJ
18 Mar 2014
Forum: MultiCharts
Topic: Zweig's Four Percent Model in EasyLanguage?
Replies: 7
Views: 2400

Re: Zweig's Four Percent Model in EasyLanguage?

I am trying to create a signal in EasyLanguage that replicates Marty Zweig's Four Percent Model. The signal is applied to a weekly chart of an index. The approach gives a buy signal when the weekly close of the stock market is four percent above low points (local minima) and a sell signal when the ...
by TJ
17 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

For explanation of EasyLanguage keywords,
look for "PowerLanguage Keyword Reference"
https://www.multicharts.com/trading-sof ... /Main_Page

The keywords you should look up:

MONTH
DATE
by TJ
17 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

::
Now, all i want is the current month?
is current month jan, or feb, or mar or what?

Thats all i am trying to do here?
How do you want your months?
jan, feb, mar...?
or 1, 2, 3...?
by TJ
17 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

Dear Sir, I thankyou for our response, but now the next line is throwing an error "Incorrect argument type." :: rkhan: I can give you a quick answer, like I did in the previous post. But you should start here: https://www.multicharts.com/discussion/viewtopic.php?f=16&t=6929 Please get an EasyLangua...
by TJ
16 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

from the Wiki help file:
FormatDate

Returns a formated string expression corresponding to the date (integer) portion of the specified DateTime value.
by TJ
16 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

Dear Sir,
It is NumericSimple, if you are about to suggest i make it a string, how do i do that?

Code: Select all

dateInDateTimeFormat(0),
dateReadable(0),
currentMonth(0);

Code: Select all

var:
dateReadable("");
by TJ
16 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

ps. [FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
16 Mar 2014
Forum: MultiCharts
Topic: How to get the current month? [SOLVED]
Replies: 15
Views: 2865

Re: How to get the current month? [SOLVED]

//gets current month from todays date dateToday = Currentdate; dateInDateTimeFormat = ELDateToDateTime(dateToday); dateReadable = FormatDate("YYYMMdd", dateInDateTimeFormat); currentMonth = Month(dateReadable); The above code returns the following error Types are not compatible for line 30 which is...
by TJ
16 Mar 2014
Forum: MultiCharts
Topic: Plot and Export Indicator : ZigZag [SOLVED]
Replies: 7
Views: 3456

Re: Plot and Export Indicator : ZigZag [SOLVED]

Got some help, here's the fix:
Replace
"ELDateToDateTime(Date)" with "ELDateToDateTime(var2)"
Good to know it is working.
by TJ
15 Mar 2014
Forum: MultiCharts
Topic: CPU Xeon vs i7
Replies: 11
Views: 5825

Re: CPU Xeon vs i7

Backtesting only uses one core? This seems like quite a flaw, especially when all CPUs these days are multi core. Wouldn't I backtesting be faster if it used all cores? Before you jump in with both feet and declare it a flaw... I would take a step back to try to understand the "how" and "why". This...
by TJ
15 Mar 2014
Forum: MultiCharts
Topic: Drawing trend line in the right margin [SOLVED]
Replies: 3
Views: 1346

Re: Drawing trend line in the right margin [SOLVED]

Hello I'm seeking info to resolve my interrogation I want to draw small square using trend line in the right margin ( free space) on the workspace. My question how to determine the date and time value for the left part of the square. I got the right value using the getappinfo Martin Count the bars....
by TJ
14 Mar 2014
Forum: MultiCharts
Topic: CPU Xeon vs i7
Replies: 11
Views: 5825

Re: CPU Xeon vs i7

Bear in mind that backtesting uses only one core. (faster megahertz helps here)
Optimization can utilize multi-core. (more cores helps here)
by TJ
13 Mar 2014
Forum: MultiCharts
Topic: Order Matching
Replies: 6
Views: 1756

Re: Order Matching

... I want to close a specific leg. I don't want FIFO.
How does your broker handle your exits?
by TJ
13 Mar 2014
Forum: MultiCharts
Topic: CPU Xeon vs i7
Replies: 11
Views: 5825

Re: CPU Xeon vs i7

t-rader I don't know about that new stuff you are mentioning. What sort of performance improvement are you looking for? btw too bad no one has any advice on this topic, I'd thought it would be more lively. You already know the basics: ie. real core, not virtual core, is what makes optimization fast...
by TJ
13 Mar 2014
Forum: User Contributed Studies and Indicator Library
Topic: Percent ruler with mouse
Replies: 10
Views: 7638

Re: Percent ruler with mouse

Hi, I can't find the built in ruler of Mc to calculate % difference between two points. It's a basic feature for a trading software. Regards Massimo You can use the Fibonacci Retracement Price Lines drawing tool. Look for this icon http://www.multicharts.com/trading-software/images/0/09/Drawing_Fib...
by TJ
13 Mar 2014
Forum: MultiCharts
Topic: Extend Trendline to a few bars under different freq
Replies: 3
Views: 1158

Re: Extend Trendline to a few bars under different freq

Hi, I have a few charts, some are in 5 min and some are daily. I'd like to draw a trendline say 5 bars ago to 5 bars later. Under minutes chart I just do: tl_new(olddate, oldtime, level, olddate, oldtime+25, level) but then this code doesn't work with daily chart. Is there a way to draw trendline b...
by TJ
11 Mar 2014
Forum: MultiCharts
Topic: Issue using Data(2) with Signals [SOLVED]
Replies: 5
Views: 3075

Re: Issue using Data(2) with Signals [SOLVED]

also try:

Code: Select all

if BARSTATUS(2)=2 then...
by TJ
11 Mar 2014
Forum: MultiCharts
Topic: Issue using Data(2) with Signals [SOLVED]
Replies: 5
Views: 3075

Re: Issue using Data(2) with Signals [SOLVED]

I have been trying to use multiple data series in signals and indicators. I have currently loaded Data(1): 1min AUDCAD, Data(2) 20min AUDCAD Plotting Studies is not an issue. I add the study to the format object screen and select the base data number and everything works as i want it to. When it co...
by TJ
09 Mar 2014
Forum: MultiCharts
Topic: Lose Connection to TWS
Replies: 8
Views: 1762

Re: Lose Connection to TWS

I looked it up. I wasn't aware but my feeling is that's not the issue. It shows as reboot 23:45. I've had this happen at multiple times and different times of days. I would check your computer, your router, and your internet connection. If there is an issue with IB data disconnect the way you descr...
by TJ
09 Mar 2014
Forum: MultiCharts
Topic: Lose Connection to TWS
Replies: 8
Views: 1762

Re: Lose Connection to TWS

I lost connection on Friday around 8:30. Also, I lost connection just a few minutes ago. I was with OEC before, I never lost connection except maybe 1x in 2 years. Previously, I traded with MB Trading and had a lot of problems with losing connections multiple times during the day. Hope TWS is not l...
by TJ
09 Mar 2014
Forum: MultiCharts
Topic: Lose Connection to TWS
Replies: 8
Views: 1762

Re: Lose Connection to TWS

Sometimes I lose connection to TWS. Each time it tries to reconnect it says "order submitted" even though its not submitting any orders (thankfully). From experience IB futures traders using MC, have you taken any steps to avoid such disconnections? When do you "loose" connection? Are you aware of ...
by TJ
09 Mar 2014
Forum: MultiCharts
Topic: Check PlotPaintBarignal of the indicator
Replies: 1
Views: 888

Re: Check PlotPaintBarignal of the indicator

I have an indicator to change the PlotPaintBar for some condition, can I check back the color of last bar in the signal program ? Sure... EasyLanguage is very powerful; it can do pretty well any analysis you can imagine. Some logics can be coded in a few lines, while others might take a bit more ti...
by TJ
04 Mar 2014
Forum: MultiCharts
Topic: Profit Target Stop Percentage [SOLVED]
Replies: 6
Views: 2909

Re: Profit Target Stop Percentage [SOLVED]

Got some help on Elance, this works great.
::
Good to hear it is working.
Thanks for sharing your code. Much appreciated.
by TJ
04 Mar 2014
Forum: MultiCharts
Topic: Latency. Please share experiences.
Replies: 77
Views: 26347

Re: Latency / slow order submission. Please share experience

::
Your pc clock shouldn't matter unless your signals are triggered on a time of day event.
It matters in the first second of the trading session.
by TJ
03 Mar 2014
Forum: MultiCharts
Topic: Latency. Please share experiences.
Replies: 77
Views: 26347

Re: Latency / slow order submission. Please share experience

Hi TJ, Please find attached my task manager. So from your response, you think that the latency I'm experiencing is indeed excessive (calculation to order hitting exchange)? I suspect I'm near the limit to whats advisable, performance wise, and am awaiting a move onto a server. But when I say near t...
by TJ
03 Mar 2014
Forum: MultiCharts
Topic: Latency. Please share experiences.
Replies: 77
Views: 26347

Re: Latency / slow order submission. Please share experience

My first thought is... 4GB is not a lot of memory these days, especially for a trading computer with 17 charts. Please make a screenshot of your TaskManager Performance tab. It should tell you if your memory utilization is ok. The CPU, though not a fast one, should be adequate. Again, the TaskManage...
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Profit Target Stop Percentage [SOLVED]
Replies: 6
Views: 2909

Re: Profit Target Stop Percentage [SOLVED]

Thanks for quick reply. So what I'm learning is to not place Global Exits in a condition. So I moved them out and now the Signal enters a trade then exits the same bar. Thoughts? :: You have to trace your variables and find out where is the trigger. Do you have a logic flow chart? Have you picked a...
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Profit Target Stop Percentage [SOLVED]
Replies: 6
Views: 2909

Re: Profit Target Stop Percentage [SOLVED]

Hi, Looking for some help, moving from TS and not able to get my stops working, they were not perfectly accurate in TS either but now they don't work at all. Basically setting percent target and stops. Position goes up X% then exit etc... Thanks for looking! Code Example: (Note the strategy trades ...
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Constructing custom future
Replies: 10
Views: 2381

Re: Constructing custom future

I want to merge historical data and real time data!
see this post
viewtopic.php?f=19&t=45735
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Constructing custom future
Replies: 10
Views: 2381

Re: Constructing custom future

You can create the old contracts, then import the ascii into them.
ok but how can I do it?
See video instruction on ascii import

https://www.multicharts.com/multicharts/help/videos/
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Constructing custom future
Replies: 10
Views: 2381

Re: Constructing custom future

::
I want to construct a custom future on the cac40 with ASCII data prior to actual contract
is it possible?

Thanks
You can create the old contracts, then import the ascii into them.
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Constructing custom future
Replies: 10
Views: 2381

Re: Constructing custom future

::
When I plotted this symbol on the chart window I have this message:
"To construct custom future please add the following:
J contract for cac40 root for 2014"

Where can I add the J contract?
::
Thanks
QuoteManager > Instrument > Add Symbol > From Data Source
by TJ
02 Mar 2014
Forum: MultiCharts
Topic: Retrieving Period Profit in script
Replies: 1
Views: 859

Re: Retrieving Period Profit in script

Hi there, I'm writing a signal script and would like to retrieve the "Period Profit" (as shown in the attached screen capture) in the Strategy Performance Report for lose control. Is it possible to get the value of this daily figure in script? Take a look at the recent threads... it has just been d...
by TJ
01 Mar 2014
Forum: MultiCharts
Topic: How to plot an indy just in the last 10 bars of chart
Replies: 4
Views: 1432

Re: How to plot an indy just in the last 10 bars of chart

Hi, who knows how can I plot an indicator only by the last x bars? This means that in each bar, in real time I need to know how many bars are in the chart to calculate if the current bar is in the last 10 or x bars.
That's a mouthful...

please draw a diagram to illustrate your vision.
by TJ
28 Feb 2014
Forum: MultiCharts
Topic: EXCEPTION Error
Replies: 5
Views: 3890

Re: EXCEPTION Error

hallo, thank you, this is a good method when you have single chart, even if when you have very long code is complex to find the bad variable. in any case this does not work for portfolio, is not possible for you to state which is the stock with error that i can simply delete from portfolio? Just op...
by TJ
28 Feb 2014
Forum: MultiCharts
Topic: Import ASCII file data and open a chart of this quote [SOLVED]
Replies: 3
Views: 1435

Re: Import ASCII file data and open a chart of this quote [SOLVED]

Thank you again TJ!
You are welcome !
Good trading to you.
by TJ
28 Feb 2014
Forum: MultiCharts
Topic: Import ASCII file data and open a chart of this quote [SOLVED]
Replies: 3
Views: 1435

Re: Import ASCII file data and open a chart of this quote [SOLVED]

Hi, everyone! I'm new for Multicharts and I like to save the data for future playback in offline mode. This is because the future contracts always are ajusted by the data provider when they expires and a new contract is released. I'd like to know the best way to do that. I've tested save the data i...
by TJ
26 Feb 2014
Forum: MultiCharts
Topic: after update not every symbol has last bar on daily charts
Replies: 8
Views: 1974

Re: after update not every symbol has last bar on daily char

hello after having many problems with updating in last spring, I finally downgraded. Being nearly a year ago, I thought I could give it another try. Unfortunately, to open and save workspaces takes really long comparison. Furthermore, and this is not good, for some symbols (ETFs), the chart just do...
by TJ
25 Feb 2014
Forum: MultiCharts
Topic: IB TICK-NYSE minute chart truncated
Replies: 6
Views: 2982

Re: IB TICK-NYSE minute chart truncated

This is my chart:

Image
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: “Study on Study” new feature in MC 8.8 [SOLVED]
Replies: 4
Views: 1800

Re: “Study on Study” new feature in MC 8.8 [SOLVED]

That does not look like a new feature. I am hoping a new "study on study" feature would allow me to take a study outputs (that are computation intensive) from one or more sub graphs and use them in another sub graph on the same chart without the hassle of global variables. This was a simple process...
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: “Study on Study” new feature in MC 8.8 [SOLVED]
Replies: 4
Views: 1800

Re: “Study on Study” new feature in MC 8.8 [SOLVED]

Where can I find an explanation of how to use this new feature?
I am using MultiCharts64 Version 8.8 Release (Build 8593)
see this post:

viewtopic.php?f=1&t=32471
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Timeseries Moving Average
Replies: 3
Views: 1307

Re: Timeseries Moving Average

Yes, but I don't know how the timeseries moving average of Metastock is calculated. Metastock has a type of moving average called TimeSeries.
http://www.youtube.com/watch?v=oR5kbfDO10A
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Timeseries Moving Average
Replies: 3
Views: 1307

Re: Timeseries Moving Average

Hi all. Again I need you help. How can I plot a Time Series Moving Average in Multicharts? Anyone could help me?
Thanks again.
You need to elaborate on what you are looking for.
Time Series Moving Average is a very broad subject, it can be something simple, or something complicated.
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Variable Moving Average Calculation [SOLVED]
Replies: 7
Views: 3849

Re: Variable Moving Average Calculation [SOLVED]

An easier way would be to initialize the VMA to Close . VMA will start with the value of "Close", after the first bar, VMA will be determined by your code. This method works if you are only referencing one bar back; Inputs: Price(c), Period(9), CMOPeriod(9); Variables: VI(0), factor(0), VMA( CLOSE )...
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Variable Moving Average Calculation [SOLVED]
Replies: 7
Views: 3849

Re: Variable Moving Average Calculation [SOLVED]

Good. Thanks for letting us know.
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Variable Moving Average Calculation [SOLVED]
Replies: 7
Views: 3849

Re: Variable Moving Average Calculation [SOLVED]

you can debug by breaking down all the variables and
printing out each value:

eg.

VMA1 = (0.78*(volatility index) * close)
VMA2 = (1-0.078 * volatility index)*yesterday’s VMA

plot CMO
plot VMA1
plot VMA2

plot VMA1+VMA2
by TJ
23 Feb 2014
Forum: MultiCharts
Topic: Variable Moving Average Calculation [SOLVED]
Replies: 7
Views: 3849

Re: Variable Moving Average Calculation [SOLVED]

::
And sorry by the bad english!
No apology needed for bad english; we are from all over the world.
by TJ
20 Feb 2014
Forum: User Contributed Studies and Indicator Library
Topic: The Economic Events Collection for MultiCharts
Replies: 131
Views: 79430

Re: The Economic Events Collection for MultiCharts

I am posting the code here for easy referencing // by Jura Inputs: NameOfList("myHistList"), RegionsToKeep("EUR;USD;GBP"), ChopUpStrings(False), Ticks_OffSet(8), HighImpact_Color(Red), MediumImpact_Color(yellow), LowImpact_Color(cyan), DisplayArrow(True), Arrow_Size(5), DisplayLine(True), Line_Width...
by TJ
19 Feb 2014
Forum: MultiCharts
Topic: Automated Signals
Replies: 2
Views: 1322

Re: Automated Signals

Can you use two signals at the same time to confirm a trade entries and exits?
How do you do that?
What do you need to confirm,
and how would two signals confirm?
by TJ
16 Feb 2014
Forum: MultiCharts
Topic: ASCII Import - data missing problem
Replies: 9
Views: 3029

Re: ASCII Import - data missing problem

Hi,
I'm trying to import some ASCII forex data:
::
The database file (TSSTORAGE.GDB) is currently pushing 200mb (199840kb) is this a problem?
::
That should not be a problem. Mine is more than twice of yours.
by TJ
16 Feb 2014
Forum: MultiCharts
Topic: Interactive broker tws
Replies: 7
Views: 1953

Re: Interactive broker tws

have you considered using the IB Gateway instead of TWS?
by TJ
15 Feb 2014
Forum: MultiCharts
Topic: MULTICHARTS 8.8 RELEASE
Replies: 139
Views: 52212

Re: MULTICHARTS 8.8 RELEASE

Unable to install 8.8 genral release. Attention! Error occurred during searching for orphaned processes. Additional error information: Failed to write database file: "C:\Users\UserName\Local\Temp\Dictionary.csv". Error code = 0x80070005. Notes: 1) Avast! AV, disabled for installation 2) Win7 Pro (6...
by TJ
13 Feb 2014
Forum: MultiCharts
Topic: How can I export Commission Rules and Session Templates ?
Replies: 7
Views: 2295

Re: How can I export Commission Rules and Session Templates

I have created many commission rules and Session templates. Now i want to transfer to a new computer and also want to install on my new Notebook. How can i copy them over ?
Thanks
See post #2
viewtopic.php?f=16&t=6845
by TJ
12 Feb 2014
Forum: MultiCharts
Topic: Price line
Replies: 10
Views: 5473

Re: Price line

arnie, MAtricks, thanks for the codes posted above. Although the codes work great, they still consume some noticeable amount of computing resources. :: Something else is slowing you down; there is more to it than the snippet in your 1st post. Your code is not properly written, but it should not cau...
by TJ
11 Feb 2014
Forum: MultiCharts
Topic: Disable Automate Order Execution warning? [SOLVED]
Replies: 32
Views: 9348

Re: Disable Automate Order Execution warning? [SOLVED]

Scenario #2: 1. You thought you have set MultiCharts/Strategy NOT to start autotrade without confirmation. 1a. You swear that you have set MultiCharts/Strategy NOT to start autotrade without confirmation. 2. you found an old wsp in your harddrive, you load it up to see what's in it. 3. MultiCharts ...
by TJ
11 Feb 2014
Forum: MultiCharts
Topic: Disable Automate Order Execution warning? [SOLVED]
Replies: 32
Views: 9348

Re: Disable Automate Order Execution warning? [SOLVED]

my 2 cents... disregard if you do not agree/care. Imagine this scenario: 1. you have set MultiCharts/Strategy to start autotrade without confirmation. 2. you found an old wsp in your harddrive, you load it up to see what's in it. 2a. your finger slipped and clicked on the wrong wsp. 3. MultiCharts s...
by TJ
09 Feb 2014
Forum: MultiCharts
Topic: IB-Data for Z3N and UB not received by MC [SOLVED]
Replies: 6
Views: 1953

Re: IB-Data for Z3N and UB not received by MC [SOLVED]

What do you mean by "the symbol root is defined as necessary"? QuoteManager.SymbolDictionary there are the root definitions for the symbols. For the named symbols the definition was implicitely given and seems to be correct. So I did not change it. Please use Live Chat with Tech Support; they can c...
by TJ
09 Feb 2014
Forum: MultiCharts
Topic: IB-Data for Z3N and UB not received by MC [SOLVED]
Replies: 6
Views: 1953

Re: IB-Data for Z3N and UB not received by MC [SOLVED]

In QM for the futures Z3N and UB the symbol root is defined as necessary but requesting data there's always the response that the query returned no data. The other treasury futures work fine as single contract ad custom (continuous) future. What did you do to the symbol root? What do you mean by "t...
by TJ
09 Feb 2014
Forum: MultiCharts
Topic: A few simple suggestions
Replies: 12
Views: 5338

Re: A few simple suggestions

What about allow multi line text?
We are only allowed to write a single line of text at a time.

It's impossible in MC to write big chart comments because of this limitation.
You can use the \n code

Image
by TJ
08 Feb 2014
Forum: MultiCharts
Topic: true/false inputs [SOLVED]
Replies: 2
Views: 1239

Re: true/false inputs [SOLVED]

Imagine a study with 17 true/false inputs. All plotting a mix between lines and trendlines. Only one is set to true. In terms of responsiveness and memory consumption, will MC have the same performance if plotting a study with 17 inputs but only plotting one of them or plotting from a study which h...
by TJ
07 Feb 2014
Forum: MultiCharts
Topic: Autotrade performance
Replies: 4
Views: 1546

Re: Autotrade performance

how many EL codes lines could be run in tick/tick study ? with a powerful computer of course A typical store bought desktop computer has a quad core CPU running at 2.6 GigaHertz. That is 2,600,000,000 calculations per second on each core! Of course that is a simplistic view... most of the operation...
by TJ
06 Feb 2014
Forum: MultiCharts
Topic: Disable Automate Order Execution warning? [SOLVED]
Replies: 32
Views: 9348

Re: Disable Automate Order Execution warning? [SOLVED]

Hello Every time you start automated order execution, a popup warning appears — user is responsible for all auto trading. It might be ok for first few times, but eventually becomes annoying, especially when starting multiple strategies. Is it possible to disable this warning? Thanks. Are you talkin...
by TJ
05 Feb 2014
Forum: MultiCharts
Topic: Automatic Check of SA Mode
Replies: 3
Views: 1305

Re: Automatic Check of SA Mode

Is there a way to detect by means of software whether automatic trading has been enabled? It means whether SA mode is active?
For example by reading a log file or by using an EasyLanguage function or statement.
Look up

getappinfo
by TJ
04 Feb 2014
Forum: MultiCharts
Topic: A few simple suggestions
Replies: 12
Views: 5338

Re: A few simple suggestions

Here's a few suggestions that I have that I think would benefit the users of our awesome platform! :: I don't know why this is even here... compile on import just makes sense. Why would we want to import code and then not compile it? Plus, about 70% of the time, I forget to check the box and then I...
by TJ
03 Feb 2014
Forum: MultiCharts
Topic: Price Alerts
Replies: 11
Views: 2574

Re: Price Alerts

I'm looking for system wide price alerts, not associated with a chart. Setting alerts in charts only work for the symbol you are charting, if I track 500 symbols I would have to have 500 charts open at all times.
Have you tried the scanner?
by TJ
02 Feb 2014
Forum: MultiCharts
Topic: two different intraday data - strategy not working [SOLVED]
Replies: 4
Views: 2061

Re: two different intraday data - strategy not working [SOLVED]

TJ thank you for your quick reply. I got it working with your help. Is this a Multicharts solution only, or is it the same in TS? And where can I read about exact this topic in the manual from MC? Do you have an link to the documentation/manual? Thanks again. This EasyLanguage syntax convention was...
by TJ
02 Feb 2014
Forum: MultiCharts
Topic: two different intraday data - strategy not working [SOLVED]
Replies: 4
Views: 2061

Re: two different intraday data - strategy not working [SOLVED]

I'm not new to EL, but I cannot resolve this problem ... Could someone have a look on it :) I'd like to buy on a 1-minute chart when Time=929 and MACD is positive on 240-minute chart. Exit at End of Day. Data 1: @FDAX, 1 Minute Data 2: @FDAX, 240 Minute inputs: FastLength(12), SlowLength(26), MACDL...
by TJ
01 Feb 2014
Forum: MultiCharts
Topic: indicators on multiple data with different bar types [SOLVED]
Replies: 3
Views: 1434

Re: indicators on multiple data with different bar types [SOLVED]

Having some trouble understanding a chart. In data 1, I have IWM, 20 point chart. Data 2 is IWM, 1 day, regular bar chart. When I plot a moving average of data2 (XAverage(c data2,20)), I get a line that has data points throughout the day instead of only at the close. Data2 is daily data so I would ...
by TJ
28 Jan 2014
Forum: MultiCharts
Topic: Best way to test backtest fill prices within a bar? [SOLVED]
Replies: 2
Views: 1210

Re: Best way to test backtest fill prices within a bar? [SOLVED]

or, you can export the Custom Future to a dummy symbol, and do your backtest on the dummy symbol.

Load your 1 min Custom Future on the chart... then

File > Export Data...
by TJ
28 Jan 2014
Forum: MultiCharts
Topic: Best way to test backtest fill prices within a bar? [SOLVED]
Replies: 2
Views: 1210

Re: Best way to test backtest fill prices within a bar? [SOLVED]

I'm backtesting a strategy based on a custom future with 30-min bars. I realise that bar magnifier is not available for custom futures, and I need to look back over a longer period than a month (future rolls monthly) so want to use the custom future. I also have IntrabarOrderGeneration = True in th...
by TJ
28 Jan 2014
Forum: MultiCharts
Topic: Is this correct behavior for "Build From Minutes" bars? [SOLVED]
Replies: 13
Views: 4307

Re: Is this correct behavior for "Build From Minutes" bars? [SOLVED]

Arnie, TJ, thanks for taking the time to address this. The daily bar data discrepancy issue doesn't seem to be a MC issue but rather a daily data issue. MC's new feature "Build From Minutes" on daily bars simply highlights the discrepancies in Daily vs Minute data. The thing we need to be aware of ...
by TJ
28 Jan 2014
Forum: MultiCharts
Topic: Is this correct behavior for "Build From Minutes" bars? [SOLVED]
Replies: 13
Views: 4307

Re: Is this correct behavior for "Build From Minutes" bars? [SOLVED]

Yes, but a 30 cent difference on the low of the day on Jan 15, 2014? How can anyone backtest on daily data with this type of discrepancy. I'm finding these discrepancies on many daily bars using both IQ Feed and IB as data sources. If no one else is seeing this than the issue has to be local on my ...
by TJ
26 Jan 2014
Forum: MultiCharts
Topic: Yahoo Data [SOLVED]
Replies: 3
Views: 2081

Re: Yahoo Data [SOLVED]

Hi All! For about one year I've been using Yahoo as an EOD data source with basically no problems. About one month ago it stopped working. I switch the FreeQuotes source to Google as a back up. That worked mostly. Now, I'm unable to display .INX (Google's ticker for SPX) as well as ^GSPC (Yahoo's t...
by TJ
26 Jan 2014
Forum: MultiCharts
Topic: Issue with TS Data connection [SOLVED]
Replies: 16
Views: 4350

Re: Issue with TS Data connection [SOLVED]

All of at sudden I can not download data from TS and keep getting an error dialog box (see attachment) and a message TS connection broken. Please advice.
Thanks
Have you tried rebooting?
by TJ
21 Jan 2014
Forum: MultiCharts
Topic: How make andraw a line from point a to point b in the chart?
Replies: 3
Views: 1377

Re: How make andraw a line from point a to point b in the ch

Thanks for your reply TJ What I'm looking for is to make the indicator draw lines from different points on different bars. E.g. draw a line from the high of bar [0] to the high of bar [5]. Another need is to make the indicator draw a "point" or "dot" at a particular price on a particular bar. E.g. ...
by TJ
21 Jan 2014
Forum: MultiCharts
Topic: How make andraw a line from point a to point b in the chart?
Replies: 3
Views: 1377

Re: How make andraw a line from point a to point b in the ch

Hi I assume this is really simple, but I cannot find any instruction on how to do this. I am programing an indicator and I want it to plot lines between point A and point B, but I am not able to find an instruction on how to do this. Could anyone tell me where I can find a tutorial or a any type of...
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

Re: "Open Tomorrow" You don't know the " Open Price " of Tomorrow, so the order is invalid. You can only trade " Next Bar at Market ". Usually MC run the code at 2 times of bar. a) when the bar is closed b) when the bar is opening NEXT day after session close. :: Thanks Please see this article: How...
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

Are you using MultiCharts .net version ? or the EasyLanguage version? PowerLanguage version Tried, many possibilities but MC gave error, no luck. Lets see if you can do this. Thanks Your syntax are incorrect. I would suggest you to start from here: [FAQ] Autotrade / Backtest / Optimization https://...
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

Re: "Open Tomorrow" You don't know the " Open Price " of Tomorrow, so the order is invalid. You can only trade " Next Bar at Market ". Usually MC run the code at 2 times of bar. a) when the bar is closed b) when the bar is opening NEXT day after session close. so in situation of (B) we get the "Ope...
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

"Open Tomorrow" should be replaced by "Next Bar at Market"
Not possible.
Below code will give an idea what we are dealing with.

Code: Select all

if open tomorrow = oPrice then buy next bar at open tomorrow limit;
Thanks
Please post your complete code for debugging.
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

Re: Sell this bar c

see post #6 and post #7
viewtopic.php?f=16&t=10811
by TJ
20 Jan 2014
Forum: MultiCharts
Topic: SetExitOnClose
Replies: 14
Views: 2991

Re: closing status of a bar sometimes takes too long

Re: "Open Tomorrow"

You don't know the "Open Price" of Tomorrow, so the order is invalid.

You can only trade "Next Bar at Market".
by TJ
16 Jan 2014
Forum: MultiCharts
Topic: Is this correct behavior for "Build From Minutes" bars? [SOLVED]
Replies: 13
Views: 4307

Re: Is this correct behavior for "Build From Minutes" bars? [SOLVED]

What are your session times?

Please go to QuoteManager,
look under

Tools > Session Templates

as well as

Instrument > Edit Instruments > Sessions

also from your chart, look under

Format Instrument > Chart Settings > Sessions
by TJ
16 Jan 2014
Forum: MultiCharts
Topic: Clearing space: What is the safe log file to erase
Replies: 1
Views: 948

Re: Clearing space: What is the safe log file to erase

Hello
I need to save some space on my disk before getting a new one.
In the past, I had erased some MC log or historical files. I just can't find back the info about it.
Martin
see post #2
viewtopic.php?f=16&t=6845
by TJ
16 Jan 2014
Forum: MultiCharts
Topic: Point and figure VPs
Replies: 3
Views: 1471

Re: Point and figure VBs

Are there any plans to allow VBs to be plotted for point and figure charts
what are "VBs" ?
by TJ
15 Jan 2014
Forum: MultiCharts
Topic: Trend line trading
Replies: 22
Views: 8956

Re: Trend line trading

Is there a way to load code from tradersxchange into the .net editor to compile the code ?
thanks
shane
No.

EasyLanguage codes are not compatible in MultiCharts .net.
by TJ
15 Jan 2014
Forum: MultiCharts
Topic: High/LowPaintBar Indicator - Code question. [SOLVED]
Replies: 4
Views: 1671

Re: High/LowPaintBar Indicator - Code question. [SOLVED]

this is how i would code it: input: Look.back(20), upcolor(blue), dncolor(red), nucolor(black); if High = highest(h, Look.back) then PlotPaintBar(High,Low,Open,Close,"", upcolor) else if Low = lowest(L, Look.back) then PlotPaintBar(High,Low,Open,Close,"", dncolor) else PlotPaintBar(High,Low,Open,Clo...
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: High/LowPaintBar Indicator - Code question. [SOLVED]
Replies: 4
Views: 1671

Re: High/LowPaintBar Indicator - Code question. [SOLVED]

look up the following keywords:

HIGHEST
LOWEST



while you are at it, look up these keywords too... they will come in handy in the future:

MAXLIST
MINLIST
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: IOG Order "setexitonclose"
Replies: 8
Views: 1959

Re: IOG Order "setexitonclose"

I just noticed your code is for BOH14,
while your order window is ZLH4.
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: IOG Order "setexitonclose"
Replies: 8
Views: 1959

Re: IOG Order "setexitonclose"

here is a screenshot of the order window last order was 205 The market was liquid at the time, also i do have the following in the code so even if not liquide: RecalcLastBarAfter(5); you can see when the EOD_B happened in the time stamp and the exact code to execute that order was the code i first ...
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: Trend line trading
Replies: 22
Views: 8956

Re: Trend line trading

Hi Roman, I am looking for sample code for trend line trading--rather than starting from ground zero. I looked through the user contributed studies and didn't find anything that appeared to directly address trend line trading. There was a note from TJ back in Jan 2009 (https://www.multicharts.com/d...
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: IOG Order "setexitonclose"
Replies: 8
Views: 1959

Re: IOG Order "setexitonclose"

because setexitonclose does not work in real time. so this is the code i generated to replace it. i can NOT use the code by goose because that has no time restraints and will send out 1000's orders literally after market hours. Do you have the logs? What time is the last BUY or SELLSHORT order? How...
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: IOG Order "setexitonclose"
Replies: 8
Views: 1959

Re: IOG Order "setexitonclose"

I have a simple strategy to close positions before the close using IOG: if SymbolName = "@BOH14" then begin if (currenttime_s >= 141230 and currenttime_s <= 141415) and marketposition <> 0 then begin Buytocover ("EOD_B") next bar at market; sell ("EOD_S") next bar at market; end; end; RecalcLastBar...
by TJ
14 Jan 2014
Forum: MultiCharts
Topic: Bollinger Bandwith indicator
Replies: 3
Views: 1476

Re: Bollinger Bandwith indicator

I downloaded the indicator from TS. I am getting errors when compiling. Would anyone know how to fix it? Thank you
Please post your "Error Message".
by TJ
13 Jan 2014
Forum: MultiCharts
Topic: Place trades for next day after market has closed?
Replies: 5
Views: 2370

Re: Place trades for next day after market has closed?

I'm developing an autotrade system that trades certain NASDAQ stocks through Interactive Brokers. It operates solely on daily bars, so it's basically a swing trading system. Ideally, I'd like to open MultiCharts once every evening (Pacific time), download the OHLC data for the past day, and then tr...
by TJ
12 Jan 2014
Forum: MultiCharts
Topic: Daily Order Generation
Replies: 6
Views: 3486

Re: Daily Order Generation

So, if I print out the list of orders, is there no automated way to read them into MultiCharts and generate trades? Or do I have to manually re-type all the orders? Thanks for your help. > I have two different trading strategies set up. There is a misunderstanding of semantics here. In MultiCharts,...
by TJ
12 Jan 2014
Forum: MultiCharts
Topic: Are there any wildcards in EL? [SOLVED]
Replies: 1
Views: 1391

Re: Are there any wildcards in EL? [SOLVED]

Does Easylanguage have a wildcard function?
I want to do something like this

Code: Select all

if symbolname = "CL**" then begin...
so that all symbols beginning with CL, like CLF4, CLG4 and so on are being addressed. Is there such a feature?
Look up:

LeftStr
by TJ
11 Jan 2014
Forum: MultiCharts
Topic: Clear "Open Existing Workspace" List [SOLVED]
Replies: 3
Views: 1674

Re: Clear "Open Existing Workspace" List [SOLVED]

Hi, Besides reinstalling the MC, is there any other to clear the cached list of "open existing workspace" button? After some time's work, my current cached workspace list is quite long and annoying. Thanks They are not cached workspaces... they are your saved workspaces. If you do not need the old ...
by TJ
11 Jan 2014
Forum: MultiCharts
Topic: Placing Orders on Session Open [SOLVED]
Replies: 4
Views: 1491

Re: Placing Orders on Session Open [SOLVED]

since multicharts does pretty much everything next bar open in real time it seems to be causing me some issues from one session to the next. for example if we have a market like the ES, and it is open from 1700 - 1615, and an order is generated on the last bar of the day at 1615 it won't get sent t...
by TJ
11 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

the chart resolution is 5 min ES chart, which is open from 1800 to 1615 EST. the issue being with limit order strategies it send the order at the end of the bar and when MC does this and the market is closed it will send unlimited orders until the order is no longer rejected. so i devised the below...
by TJ
10 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

thanks for your help, that page is a lot of help. quick question that is different than nested statements but directly related to the above code. I have inserted the above code because MC will send out a stream of limit orders after market hours and my broker does not like this. if I have the follo...
by TJ
10 Jan 2014
Forum: MultiCharts
Topic: Easylanguage and day after
Replies: 8
Views: 2143

Re: Easylanguage and day after

ps.
[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
10 Jan 2014
Forum: MultiCharts
Topic: Easylanguage and day after
Replies: 8
Views: 2143

Re: Easylanguage and day after

Good day to all members of the forum. My name is Paul and I'm a new member. I need some help. I'm trying to complete a strategy but I dont understand wher's the mistake. The system opens a long or a short position. This position must be closed the day after at 09.30 am I wrote this code but it is w...
by TJ
10 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

Here are more examples of loops

viewtopic.php?f=16&t=7351&p=32845#p32845
by TJ
10 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

I was not aware of the cascade syntax so basically in this format the statement says: if none of the IF statements are true then condition30 = false. which is exactly what i want. is my above logic correct? Your code does the job, but it does not have to have the extra BEGIN/END in the logic. If al...
by TJ
09 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

If I read you correctly, you do not need the extra BEGIN . This is not a nest, it is a cascade. if SymbolName = "@ES#C" and ( time >=1615 And Time < 1800 ) then begin condition30= True; end Else // <--no begin here if SymbolName = "@US#C" and ( time >=1700 And Time < 1800 ) then begin condition30= T...
by TJ
09 Jan 2014
Forum: MultiCharts
Topic: Nested If Statement
Replies: 10
Views: 2524

Re: Nested If Statement

I would format the matching BEGIN and END at the same tab for debugging. eg. if SymbolName = "@ES#C" and ( time >=1615 And Time < 1800 ) then BEGIN //1 condition30= True; END //1 Else begin //2 if SymbolName = "@US#C" and ( time >=1700 And Time < 1800 ) then begin //3 condition30= True; end //3 Else...
by TJ
09 Jan 2014
Forum: MultiCharts
Topic: Any data offered by MC?
Replies: 3
Views: 1356

Re: Any data offered by MC?

Does MC offer any free end of day data with the free 30 day trial? If so, how far back does it go and is it tick or minute? Does MC offer any tick and/or minute data (and as of what year) with a paid license? MultiCharts does not have data. You will need to get it from your broker, or a dataprovide...
by TJ
08 Jan 2014
Forum: MultiCharts
Topic: Lines and scales [SOLVED]
Replies: 8
Views: 3544

Re: Lines and scales [SOLVED]

Arnie: As always, thanks for sharing your hard work.
by TJ
07 Jan 2014
Forum: MultiCharts
Topic: Lines and scales [SOLVED]
Replies: 8
Views: 3544

Re: Lines and scales [SOLVED]

::
Question: Is it possible to extend these lines to the right?
::
try this:

Code: Select all

For value1 = 0 to 10
begin
plot1[-value1](OnHigh,"ONhi");
end;
by TJ
05 Jan 2014
Forum: MultiCharts
Topic: Recognize the "last value" of a data array from any bar
Replies: 12
Views: 4865

Re: Recognize the "last value" of a data array from any bar

Yes even if you could see the max bars or "lastbarnumber" from any previous bar it would open up a lot of possibilities.. then you should be able to reference values for the last bar from any other bar.. Anyway it seems there is no way to do it at this stage, so I will continue to use the 3rd party...
by TJ
05 Jan 2014
Forum: MultiCharts
Topic: can not see Topix future chart
Replies: 2
Views: 1044

Re: can not see Topix future chart

Hi there,
I can see Topix future on IB TWS Chart. However, I can not see Topix future chart on Multicharts. Please advise where should I change in order to see Topix future chart on
Multhcarts. Thanks.
Charles
did you add the symbol through

QuoteManager > Add Symbol > From Data Source
by TJ
05 Jan 2014
Forum: MultiCharts
Topic: How to get daily ADX value on 20mins time frame?(MC8.8)
Replies: 4
Views: 1499

Re: How to get daily ADX value on 20mins time frame?(MC8.8)

Sorry for that.
I am the newbie.
I can't get the correct daily value of ADX on 20 mins time frame.
::
Do you mean you want to have multi-data analysis?

What is your main chart resolution?


You can start here:
post #4 and post #5
viewtopic.php?f=16&t=6929
by TJ
05 Jan 2014
Forum: MultiCharts
Topic: How to get daily ADX value on 20mins time frame?(MC8.8)
Replies: 4
Views: 1499

Re: How to get daily ADX value on 20mins time frame?(MC8.8)

ps.
[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
05 Jan 2014
Forum: MultiCharts
Topic: How to get daily ADX value on 20mins time frame?(MC8.8)
Replies: 4
Views: 1499

Re: How to get daily ADX value on 20mins time frame?(MC8.8)

I use the code below: I can get the daily ADX corrcet value. Could you give me some suggestions? Thank you. variables: var0( 0 ) , var1(0) , var2(0) , TradeSignal(0) , PosSize(0) , ADXNUM(0,data2); var0 = BollingerBand( BollingerPrice, Length, -NumDevsDn ) ; var1 = BollingerBand( BollingerPrice, Le...
by TJ
04 Jan 2014
Forum: MultiCharts
Topic: PosTradeEntryName help
Replies: 2
Views: 1134

Re: PosTradeEntryName help

ps.
[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
04 Jan 2014
Forum: MultiCharts
Topic: PosTradeEntryName help
Replies: 2
Views: 1134

Re: PosTradeEntryName help

Can someone please help me complete the following code. I am trying to construct an _IsLong variable to =1 if the marketpositon =1 based on the entry/exit string. vars:_LE1(0),_LE2(0),_LE3(0),_LE4(0),_LX1(0),_LX2(0),_LX3(0),_LX4(0),_IsLong(0); if PosTradeEntryName(0, 0) = ("LONG_ENTRY1") then _LE1=...
by TJ
04 Jan 2014
Forum: MultiCharts
Topic: Backtesting on tick data - what to expect?
Replies: 7
Views: 2296

Re: Backtesting on tick data - what to expect?

What can one expect when using MC for serious backtesting? I assumed I would be able to perform intraday backtests based on years of tick data but I keep running into problems. :: ... I then open up a chart, set the date range for the chart for the full year of data, apply a strategy (with the "bar...
by TJ
04 Jan 2014
Forum: MultiCharts
Topic: Backtesting on tick data - what to expect?
Replies: 7
Views: 2296

Re: Backtesting on tick data - what to expect?

What is your computer spec? CPU, MHz, RAM, SSD? What OS? Core I7, 2.66GHz, 8MB RAM, SSD for OS disk (and MC installation and files as far as I can tell) Windows 7 I take if from your response that what I experience is not "normal" behaviour? Maybe I should be looking for a fix at my computer/OS set...
by TJ
03 Jan 2014
Forum: MultiCharts
Topic: New "Trial" User - formerly with TS, had a question or 2,..
Replies: 10
Views: 2786

Re: New "Trial" User - formerly with TS, had a question or 2

Free Quote tutorial:

Look for Yahoo
https://www.multicharts.com/multicharts/help/videos/


You can also connect to InteractiveBrokers' Demo System for free streaming quotes (day old data for testing purposes).
Go to IB website and look for instruction for Demo System.
by TJ
03 Jan 2014
Forum: MultiCharts
Topic: Backtesting on tick data - what to expect?
Replies: 7
Views: 2296

Re: Backtesting on tick data - what to expect?

What can one expect when using MC for serious backtesting? I assumed I would be able to perform intraday backtests based on years of tick data but I keep running into problems. Simple example: I've imported 1 year of tick data for a futures symbol (which in itself takes about 20m - 30m to do). This...
by TJ
02 Jan 2014
Forum: MultiCharts
Topic: autotrading sim price error/lockup
Replies: 28
Views: 7937

Re: autotrading sim price error/lockup

Ok so It's been going very well for the last couple of weeks because i haven't touched my computer while autotrading sim. Mostly because i've been busy around the holidays. However today i was coding in multicharts and playing a short video in GOM player and it locked. RAM usage wasn't very high, a...
by TJ
01 Jan 2014
Forum: MultiCharts
Topic: Trade Data2 or DataX
Replies: 2
Views: 1262

Re: Trade Data2 or DataX

Hello All - Happy New Year!
I've been wondering if it is possible to trade Data2 and/or Data3, etc... based on Data1 conditions?
This might be considered "Portfolio Trading" and if so I guess that answer for now is "no". Is that correct?
Thanks
You can only trade on data1.
by TJ
01 Jan 2014
Forum: MultiCharts
Topic: Draw a text box at a fixed position on a chart
Replies: 18
Views: 6512

Re: Draw a text box at a fixed position on a chart

Hi,
I am playing with Text_New, in order to create some buttons on the chart.
I'm stuck with an error I can't reconize and solve.
May you help me ?

Regards.
Massimo
::
Can you describe what are you trying to achieve?
Please post a mock up drawing of your intention?
by TJ
31 Dec 2013
Forum: MultiCharts
Topic: Exit at the open [SOLVED]
Replies: 7
Views: 2277

Re: Exit at the open [SOLVED]

ps:
[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
31 Dec 2013
Forum: MultiCharts
Topic: Exit at the open [SOLVED]
Replies: 7
Views: 2277

Re: Exit at the open [SOLVED]

Thanks guys for the reply. sptrader, I've tried the code you posted it seems to skip most of the open that are profitable. see attached. The closest I've come is using the "sell next bar at open next bar limit;" but I can't seem to get it to exit only when the open price if above entry price. input...
by TJ
29 Dec 2013
Forum: MultiCharts
Topic: Multiple Time Frame Signal Strategy
Replies: 9
Views: 3276

Re: Multiple Time Frame Signal Strategy

I don't fully understand the response. Are you saying that after the first labeled bar ends on Data 1, it does not matter that the state changes in Data 2 or Data 3 because the next bar has already begun in Data 1? If I issue a command to "buy next bar" Multicharts will assume it is the bar after w...
by TJ
29 Dec 2013
Forum: MultiCharts
Topic: TRIX CODE [SOLVED]
Replies: 1
Views: 1424

Re: TRIX CODE [SOLVED]

Where can i find the Trix code for the function and signal so i can make a working strategy with the powerlanguage editor, The Trix indicator already comes with the multicharts platform. Thanks! To see the TRIX function code, simply load the TRIX indicator in the powerlanguage editor, look for the ...
by TJ
29 Dec 2013
Forum: MultiCharts
Topic: Multiple Time Frame Signal Strategy
Replies: 9
Views: 3276

Re: Multiple Time Frame Signal Strategy

Signals are calculated at the end of the bar,
unless you have enabled IOG.
by TJ
29 Dec 2013
Forum: MultiCharts
Topic: Execut a function if click on the upper corner: How to do it [SOLVED]
Replies: 5
Views: 2108

Re: Execut a function if click on the upper corner: How to d [SOLVED]

Hi,
please where can I find more informations about Symbol_CurrentBar ?

Regards
Massimo
Look under the section:
PowerLanguage Keyword Reference
Category: Data Information/General
https://www.multicharts.com/trading-sof ... /Main_Page
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

Congratulations on your successful image insert.

Peace to you too.
and a Happy New Year
Good Trading To All

Thank you!
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

TJ....thank you sir.....I'm using IE because most of the forums tend to work their magic around IE....I'll move over to Chrome (my usual browser) and copy paste the link attempt there....crazy browsers....IE does not have the copy link address option, as that is how I worked the img tag in TS also....
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

test inline image checked "Disable BBCode (BBCode is ON) did not add as attachment... ..... C:\Users\MSS-LT\ Pictures\Kaw_Vulcan1500_N1\DSCN2074.JPG You have used your computer's address. That's why the image is not showing. See " C:\Users\ ..." We have no way of accessing your computer from the in...
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Multiple Time Frame Signal Strategy
Replies: 9
Views: 3276

Re: Multiple Time Frame Signal Strategy

I have an odd issue. I am using three data series.
::
Is this a known issue? Is there something I can do to correct it?
...sorry... can't tell more without the code.
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

Hey... guess what, the forum software must had an upgrade. The image does not shown full size until you click on it.

Image
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

TJ....thanks for the input, but the use of the img[tag] seems pretty useless if we can't insert an image between the tags. I should be able to copy the image in between the tags and in the preview be able to view my inserted image? If you attempt to copy/paste between the tags you are blocked/greye...
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Multiple Time Frame Signal Strategy
Replies: 9
Views: 3276

Re: Multiple Time Frame Signal Strategy

I should be fine there. 200 is the lowest resolution.
What is "200 Bars"?

Not "lowest resolution", but you need the fastest resolution.
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

Thanks TJ.....have a link handy on image size for posting?
There is no restriction on the image size... but a large image will go off the right hand side of the column, rendering it useless as an illustration.

Best viewable size is around 1024 pixel wide.
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Multiple Time Frame Signal Strategy
Replies: 9
Views: 3276

Re: Multiple Time Frame Signal Strategy

you should always use the fastest chart resolution as the data1.

eg.
data1 = 1 min
data2 = 5 min
by TJ
28 Dec 2013
Forum: MultiCharts
Topic: Image in Post? [SOLVED]
Replies: 15
Views: 2707

Re: Image in Post? [SOLVED]

>[img]2013-12-28%2007_56_42-MultiCharts64%20-%20LT_FPIAT_20131208_5-30m%20charts[/img]

The link address above is incomplete... there should be a http prefix.

At any rate, your image is too big to be inserted into the post.
Having the URL in the post is sufficient; people will know to click on it.
by TJ
25 Dec 2013
Forum: MultiCharts
Topic: How can I reverse a position in backtest ? [SOLVED]
Replies: 1
Views: 1066

Re: How can I reverse a position in backtest ? [SOLVED]

if you have a long position, and you trigger a SELLSHORT order, MultiCharts will automatically reverse the position for you. Example 1 position= 0 contract code: SELLSHORT ("S") 1 contract next bar at market; will result in selling 1 contracts. Example 2 position= long 1 contract code: SELLSHORT ("S...
by TJ
21 Dec 2013
Forum: MultiCharts
Topic: MA not display correctly on second chart
Replies: 3
Views: 1463

Re: MA not display correctly on second chart

Hi All, I have a chart window with two subcharts, a 5min bar chart on the top portion and a 1min chart on the bottom portion. (Refer to picture). I have two indicators (See the black lines) both are 30 period EMA's both calculated on the top chart (Base Data 1), 1 displayed on the top chart the oth...
by TJ
20 Dec 2013
Forum: MultiCharts
Topic: Elcollection: Going through CSV file// Want to understand... [SOLVED]
Replies: 7
Views: 4654

Re: Elcollection: Going through CSV file// Want to understan [SOLVED]

This is an example of a LIST

Image


This is an example of a MAP

Image
by TJ
19 Dec 2013
Forum: MultiCharts
Topic: Enable Alert for Drawing Object by default.
Replies: 6
Views: 1623

Re: Enable Alert for Drawing Object by default.

Is it possible to have the "Enable Alerts" option selected by default for horizontal lines (or any drawing object). If I enable alerts and select "use as default", the next horizontal line I insert does not have the alerts enabled. Any assistance would be appreciated. Bruno You have to save the cha...
by TJ
17 Dec 2013
Forum: MultiCharts
Topic: Datafeed - 0 volume collected [SOLVED]
Replies: 15
Views: 3975

Re: Datafeed - 0 volume collected [SOLVED]

It's real time feed and MC collect the 0 price/volume every few mins. Time and Sales is a different stream than Real Time feed ; the numbers will be different. Have you compared it with another trader's quotes? Have you noticed any delayed quote warnings? (bottom right corner of the MultiCharts tha...
by TJ
17 Dec 2013
Forum: MultiCharts
Topic: trendline drift
Replies: 4
Views: 1326

Re: trendline drift

Sorry if its a repetitive question, but I was unable to find an answer. I have been noticing "line drift" on my charts, and wonder if there is something I am overlooking. Sometimes, if I manually draw a trendline on a chart, and change the bar spacing (usually zooming in) the line will move in rela...
by TJ
17 Dec 2013
Forum: MultiCharts
Topic: Datafeed - 0 volume collected [SOLVED]
Replies: 15
Views: 3975

Re: Datafeed - 0 volume collected [SOLVED]

eSignal 10.6, MC 8.7.7633, Win7
Starting from Dec 16, there are some 0 volume trades in my mc tick data, what could be wrong?
The time and sales in eSignal seems fine.
Have you tried a reload?

>View > Reload



attached for your reference is my data from InteractiveBrokers.
by TJ
17 Dec 2013
Forum: MultiCharts
Topic: Trend Lince drawing: Amateur question
Replies: 8
Views: 2071

Re: Trend Lince drawing: Amateur question

Why are you using Intrabarpersist ?

What are you trying to achieve?
by TJ
16 Dec 2013
Forum: MultiCharts
Topic: Graphing options - Stair Step
Replies: 9
Views: 3324

Re: Graphing options - Stair Step

Is there a mechanism other than via trendlines to create a stair step graph? Can you elaborate a bit more on what you are trying to achieve? You can also use PLOT to draw lines or stair step graph. Depends on the application, it might be easier, it might be harder. And vis versa with trendline draw...
by TJ
14 Dec 2013
Forum: MultiCharts
Topic: Intel chip with 2 cores but 4 threads.
Replies: 6
Views: 1701

Re: Intel chip with 2 cores but 4 threads.

I asked Henry a year or more ago whether or not MC uses all Threads (e.g. 8threads) or all Cores. At that time, he was clear: MC will be distributed among Cores and NOT Threads. If you have a Quad core and 8 charts open, then each Core will have 2 charts; with a Dual core with 8 charts open, each C...
by TJ
13 Dec 2013
Forum: MultiCharts
Topic: Intel chip with 2 cores but 4 threads.
Replies: 6
Views: 1701

Re: Intel chip with 2 cores but 4 threads.

Multithreading will speed up most of the processes.

Except... optimization, which are loaded into real cores, not virtual cores.
by TJ
12 Dec 2013
Forum: MultiCharts
Topic: no real time updates in chart [SOLVED]
Replies: 7
Views: 2307

Re: no real time updates in chart [SOLVED]

Henry,
I got a step closer..
i changed my time zone to the exchanges one..
now the "statusline" is updating with real time value
but the chart is not updated ..
anything else maybe you can think of?
regards
Check your session time setting.
by TJ
11 Dec 2013
Forum: MultiCharts
Topic: no real time updates in chart [SOLVED]
Replies: 7
Views: 2307

Re: no real time updates in chart [SOLVED]

hi, i'm having a trial iqfeed account, it gets the historic data for a chart.. but it does not get the real time data.. in multicharts quotemanager64 in the field: collect rt data w/o plotting it keeps haning on : connecting... when i click the connect symbol it does not work on any symbol. i also ...
by TJ
10 Dec 2013
Forum: MultiCharts
Topic: Difference in IQ Feed Historical tick data vs Dukas Copy
Replies: 8
Views: 3372

Re: Difference in IQ Feed Historical tick data vs Dukas Copy

I tried IQ feed, and my backtesting results were completely inackurate. I backtest eurusd with barmagnifier plus all the boxes ticked to make it as detailed as possible. I compared the results to those with the historical tickdata of the BID price I downloaded from Dukas Copy. The 2 were completely...
by TJ
10 Dec 2013
Forum: MultiCharts
Topic: Glitch (bad data) on some charts
Replies: 3
Views: 1145

Re: Glitch (bad data) on some charts

Hello
Some charts show bad data on a daily chart. If i set to display 24 hours then a defective chart look ok
I did check on IB chart on they are OK
I did reload all data, problem persist
Martin
What version is your TWS?
by TJ
08 Dec 2013
Forum: MultiCharts
Topic: Sound File Issue [SOLVED]
Replies: 6
Views: 2468

Re: Sound File Issue [SOLVED]

Yes. As I said, the file plays as a ding in MultiCharts but plays correctly when directly clicked on as a file. Clicking the TEST in MC provides a ding instead of, say, "emini" which was recorded. If you click the TEST button and hear a ding instead, that means MultiCharts could not play your file....
by TJ
08 Dec 2013
Forum: MultiCharts
Topic: Sound File Issue [SOLVED]
Replies: 6
Views: 2468

Re: Sound File Issue [SOLVED]

I have recorded .wav sound files as alerts and have added them as alerts to strategies. However, they are played as "dings" by MultiCharts rather than the actual sounds I recorded. When I click directly on the file MS Windows Media Player plays them correctly. This is not a version specific issue. ...
by TJ
07 Dec 2013
Forum: MultiCharts
Topic: How to use Study on Study feature in PL
Replies: 3
Views: 1361

Re: How to use Study on Study feature in PL

Please read this article to see if this is what you intended:

Indicator based on values of another indicator
https://www.multicharts.com/trading-sof ... _indicator
by TJ
07 Dec 2013
Forum: MultiCharts
Topic: How to use Study on Study feature in PL
Replies: 3
Views: 1361

Re: How to use Study on Study feature in PL

Hi guys! I´m trying to referente an indicator from a new custom indicator, like this: Plot1("Indicator x"); Someone can help me? Thanks! Not sure exactly what you are trying to achieve. If you want to plot the value of one indicator into another indicator, you have to copy the code into your indica...
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: Plot text in scanner column based on conditions [SOLVED]
Replies: 10
Views: 2870

Re: Plot text in scanner column based on conditions [SOLVED]

I added a third condition to your code and it now works as intended. Thank you very much for your assistance. Condition1 = BR_TrendUP = 1; Condition2 = BR_TrendDOWN = 1; Condition3 = BR_TrendUP = 0 and BR_TrendDOWN = 0; If Condition1 then BEGIN Plot1("UP"); SetPlotBGColor( 1, yellow); SetPlotColor(...
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: Plot text in scanner column based on conditions [SOLVED]
Replies: 10
Views: 2870

Re: Plot text in scanner column based on conditions [SOLVED]

I really appreciate your assistance TJ. Please have a look at the attached image. My second attempt: Condition1 = BR_TrendUP = 1; Condition2 = BR_TrendDOWN = 1; Plot1("","",black); If Condition1 then Plot1("UP"); SetPlotBGColor( 1, yellow); SetPlotColor(1, black); If Condition2 then Plot1("DN"); Se...
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: Importing ASCII CSI data in quotemanager. [SOLVED]
Replies: 5
Views: 3667

Re: Importing ASCII CSI data in quotemanager. [SOLVED]

I downloaded historical tick data from Dukas Copy using a handy tool called Tick Data Downloader which gave me a CSV file. The problem I have is when trying to import the CVS file in Quote Manager. All the fields circled in red in the attached picture are greyed out and not possible to edit. Any cl...
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: Plot text in scanner column based on conditions [SOLVED]
Replies: 10
Views: 2870

Re: Plot text in scanner column based on conditions [SOLVED]

Try this:

Code: Select all

Condition1 = BR_TrendUP = 1;
Condition2 = BR_TrendDOWN = 1;

If Condition1 then
BEGIN
Plot1("UP");
SetPlotBGColor( 1, yellow);
SetPlotColor(1, black);
END
else
If Condition2 then
BEGIN
Plot1("DN");
SetPlotBGColor( 1, cyan) ;
SetPlotColor(1, black);
END;
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: MC vs MC.Net execution performance
Replies: 2
Views: 1222

Re: MC vs MC.Net execution performance

This will be of interest to those who need to rely on GV for their analysis

GlobalVariables GV Latency Tester
viewtopic.php?f=5&t=10780
by TJ
06 Dec 2013
Forum: MultiCharts
Topic: MC vs MC.Net execution performance
Replies: 2
Views: 1222

Re: MC vs MC.Net execution performance

Hi there, I try to use Global Variable(GV) function in power language. I send one value to GV and request to sellforshort another product. If market position contract A is +1 then use GV to send to value1=+1 to contract B. If value1=+1 , then sellforshort for contract B. It can work successfully. H...
by TJ
03 Dec 2013
Forum: MultiCharts
Topic: System requirement for Live machine
Replies: 7
Views: 2909

Re: System requirement for Live machine

Before you start using MultiCharts, make sure your PC meets the following system requirements: Tech Specs . Basically the required hardware depends on your needs and your setup. Just trace the system performance with your individual configuration and upgrade the weak components. Henry: Your webpage...
by TJ
02 Dec 2013
Forum: MultiCharts
Topic: Question on DOM queries for the bidsize and asksize [SOLVED]
Replies: 4
Views: 1759

Re: Question on DOM queries for the bidsize and asksize [SOLVED]

Oh wow, it looks that procedure works! Thank you for the idea TJ! That has been a very long term search for me.
Good to know it is working.
by TJ
02 Dec 2013
Forum: MultiCharts
Topic: Question on DOM queries for the bidsize and asksize [SOLVED]
Replies: 4
Views: 1759

Re: Question on DOM queries for the bidsize and asksize [SOLVED]

I would like to know if anyone has had any success using the "DOM" aspect of MC in order to get realtime bidsize and asksize? I have tried just about every configuration and the result has always been the same - i.e. the quotes (both price and market size) are VERY slow and they miss more quotes by...
by TJ
30 Nov 2013
Forum: MultiCharts
Topic: How to submit suggestions for new features [SOLVED]
Replies: 2
Views: 1813

Re: How to submit suggestions for new features [SOLVED]

Good afternoon, Forum: I am trying to find the proper way to submit suggestions for new features in MultiCharts. I have looked at Project Management, but see only bugs and fixes. Your guidance is appreciated in advance. virginiatrader Project Management is for bug reports as well as new feature req...
by TJ
30 Nov 2013
Forum: MultiCharts
Topic: Time less/Add minutes [SOLVED]
Replies: 12
Views: 3637

Re: Time less/Add minutes [SOLVED]

TJ
Thank you, This function works like a charm.
You are welcome.

Your original formula was not that far off... only missed by one bracket.
by TJ
30 Nov 2013
Forum: MultiCharts
Topic: Time less/Add minutes [SOLVED]
Replies: 12
Views: 3637

Re: Time less/Add minutes [SOLVED]

You can use a function called AddTime . It should be in your PowerLanguageEditor. eg. var: new.time(0); new.time = AddTime( 1030, -50 ); TJ AddTime function is not available in MC v8.8 beta2. Could you please post that code on this forum. Thanks Please see: https://www.multicharts.com/discussion/vi...
by TJ
30 Nov 2013
Forum: User Contributed Studies and Indicator Library
Topic: AddTime
Replies: 0
Views: 2309

AddTime

[LegacyColorValue = true]; { User Function: AddTime Syntax : AddTime ( xTime, Minutes ) Inputs : xTime - time in 24 hour format. Minutes - amount to add/subtract to xTime. Sample Usage : if Time > AddTime (Sess1StartTime, +30) then ... Returns: Adjusted time in 24 hour format. Properties [ ] Auto D...
by TJ
29 Nov 2013
Forum: MultiCharts
Topic: Time less/Add minutes [SOLVED]
Replies: 12
Views: 3637

Re: Time less/Add minutes [SOLVED]

You can use a function called AddTime.
It should be in your PowerLanguageEditor.

eg.

Code: Select all

var:
new.time(0);

new.time = AddTime( 1030, -50 );
by TJ
29 Nov 2013
Forum: MultiCharts
Topic: Time less/Add minutes [SOLVED]
Replies: 12
Views: 3637

Re: Time less/Add minutes [SOLVED]

Hi, I want to less 50 minutes from time =1030 So the answer should come 940 Or if i add 50 minutes then answer should come 1120 How can I do this? I tried this but no luck minutestotime(timetominutes(t-50)) Thanks Please see post #12 Manipulating Dates and Times .... pg. 15 https://www.multicharts....
by TJ
25 Nov 2013
Forum: MultiCharts
Topic: Issues with average function under multiple data series [SOLVED]
Replies: 11
Views: 3438

Re: Issues with average function under multiple data series [SOLVED]

I thought the error was quite obvious and abundant so I didn't go further. Anyway, from 9:42:50 to 9:45:05, you can see that the averages of data4 are different, same for data5. Whereas the averages of data1 during the same period are the same. I have already manually checked the calculation before...
by TJ
25 Nov 2013
Forum: MultiCharts
Topic: Issues with average function under multiple data series [SOLVED]
Replies: 11
Views: 3438

Re: Issues with average function under multiple data series [SOLVED]

Where are the errors? Can you pick a date and time as example? What should the proper values be? Have you done a manual calculation to determine the differences? hint: check for empty periods. Posting a massive txt output does not point to any errors. You can use the print command to do an audit. Fo...
by TJ
25 Nov 2013
Forum: MultiCharts
Topic: Delete Data of a symbol [SOLVED]
Replies: 4
Views: 3041

Re: Delete Data of a symbol [SOLVED]

Hi,
Is there a way to force MultiCharts to request a FRESH download of data instead of using the cached one?
Or the only way is to delete the data and clear cache of a symbol from QuoteManager?
Thank you in advance.
Bulli Castelo
View > Reload
by TJ
25 Nov 2013
Forum: MultiCharts
Topic: Issues with average function under multiple data series [SOLVED]
Replies: 11
Views: 3438

Re: Issues with average function under multiple data series [SOLVED]

I have been checking on the mechanics of the array function and found some possible issues with the function when using multiple data series. I compare the results of simple average calculation using array function and the build-in average function. This is the code I used for testing on a 5-second...
by TJ
24 Nov 2013
Forum: MultiCharts
Topic: Functions not verifying
Replies: 3
Views: 1292

Re: Functions not verifying

ps.
[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
24 Nov 2013
Forum: MultiCharts
Topic: Functions not verifying
Replies: 3
Views: 1292

Re: Functions not verifying

I am getting the following compile error for any new function that I create: Study: "MyTest1" (Function) Please wait .... ------ Compiled with error(s): ------ Compile error errLine 0, errColumn 0, errLineEnd 0, errColumnEnd 0 causal study: (Function) The code is given (IT is a copy of the DMI func...
by TJ
22 Nov 2013
Forum: MultiCharts
Topic: mix different resolutions
Replies: 5
Views: 1673

Re: mix different resolutions

I believe I've read something similar on the forum already but can't find it. I have a 8 point volume delta chart and added a second data series, a 30 minute one to track the last bar profile. As you can see, the 8 point volume delta bars end up getting extra space between them because of the 30min...
by TJ
18 Nov 2013
Forum: MultiCharts
Topic: Proper way to code an alert text message [SOLVED]
Replies: 3
Views: 1411

Re: Proper way to code an alert text message [SOLVED]

Thank you TJ
Another sandwich for you. Hope your stomach could support all of them..
Martin
yw
by TJ
18 Nov 2013
Forum: MultiCharts
Topic: Proper way to code an alert text message [SOLVED]
Replies: 3
Views: 1411

Re: Proper way to code an alert text message [SOLVED]

Hello I'm trying to code to triggered an alarm message text to be display when a condition is met If WRB_Black then begin alert(text("alertst")); playsound("G:\Users\Utilisateur\Documents\Bourse\Sound\alarm.wav"); end; When the condition is met, the Playsound function is triggered, but no text do a...
by TJ
15 Nov 2013
Forum: MultiCharts
Topic: Question, execution of signal script [SOLVED]
Replies: 6
Views: 2410

Re: Question, execution of signal script [SOLVED]

I am trying to program a signal and in the code I want the logic to go between different "stations" for processing. (Sort of like a product travels between different machines for different kinds of processing in a workshop). I have written a simple verison below, where processing starts at station ...
by TJ
14 Nov 2013
Forum: MultiCharts
Topic: Could MC feed realtime data to GlobalServer(TS2000i)?
Replies: 3
Views: 1174

Re: Could MC feed realtime data to GlobalServer(TS2000i)?

Could MC feed realtime data to GlobalServer(TS2000i)?
I have both MC and TS.
But I 'm most familiar with TS2000i.
What should I do?
Please help me step by step.
THANKS!!!
please see video on setup
https://www.multicharts.com/multicharts/help/videos/
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Where to find tskit.dll for compiling 64bit plugin
Replies: 1
Views: 1022

Re: Where to find tskit.dll for compiling 64bit plugin

I just try to re-compile Elcollection in 64bit for learning. Where can I find the 64bit tskit.dll
Please see this answer:
viewtopic.php?f=1&t=11449
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

::
Indicator is NOT anchored to price as the chart is scrolled back in time.
::
As you will see it 'floats' up and down not anchored to price.
Make up your mind...

scroll horizontally (ie scrolled back in time)?
or
float up and down (ie not scaled to price)?
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

Attached workspace file.
Please double click on indicator,
In the Properties tab,
Under the Advanced section,
check the box for
Update on every tick
Didn't work for me. Did it work for you?
Please post your screenshot with notes (not your wsp file).
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

Attached workspace file.
Please double click on indicator,
In the Properties tab,
Under the Advanced section,
check the box for
Update on every tick
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

MultiCharts64 Version 8.8 Beta 2 (Build 8070) Data1, 1 point chart Data2, 1 minute chart MovAvg 1 Line study, based on data2, shown in subchart#1 Indicator is NOT anchored to price as the chart is scrolled back in time. Depending on the proximity of movement between Data1 and Data2; the moving aver...
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

No luck. Created a workspace and chart from scratch. Saved, closed and reopened several times. Also saved workspace, closed down MC and restarted. Still no luck. Can you reproduce TJ? I have multiple charts with multiple data streams of various time/non-time overlays. Please post a screenshot with ...
by TJ
12 Nov 2013
Forum: MultiCharts
Topic: Indicator Scaling Problem [SOLVED]
Replies: 13
Views: 5338

Re: Indicator Scaling Problem [SOLVED]

MultiCharts64 Version 8.8 Beta 2 (Build 8070)
Data1, 1 point chart
Data2, 1 minute chart
MovAvg 1 Line study, based on data2, shown in subchart#1
Indicator is NOT anchored to price as the chart is scrolled back in time.
Close the workspace and start again. Usually that fixes it.
by TJ
11 Nov 2013
Forum: MultiCharts
Topic: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]
Replies: 14
Views: 3619

Re: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]

Hmmmm, I only recall having these choices prior to 8.8 beta: Screen Entire Series User Defined Movement Size Price Range https://www.multicharts.com/trading-software/index.php/Chart_Scaling It seems Price Range was replaced with "Same As Instrument" at some point. In either case, "Same as Instrumen...
by TJ
11 Nov 2013
Forum: MultiCharts
Topic: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]
Replies: 14
Views: 3619

Re: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]

That's what I thought the "Entire Series" did. I'm still not clear what the difference between them is. And if this is the preferred indicator scaling choice why is it new to 8.8?
This is not new, this option has been there since day one.
by TJ
11 Nov 2013
Forum: MultiCharts
Topic: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]
Replies: 14
Views: 3619

Re: 8.8 beta 2 Format/Scaling/Same as Instrument [SOLVED]

Hi,
Under Format Study/ Scaling there is a new "Same As Instrument" range. I can't find a definition for it.
That means the indicator's plots will be drawn on the instrument's scale.

This is the preferred choice for most indicators that plots on the same subchart as the instrument.
by TJ
11 Nov 2013
Forum: MultiCharts
Topic: DATAn Discrepancy between MC and TS [SOLVED]
Replies: 3
Views: 1592

Re: DATAn Discrepancy between MC and TS [SOLVED]

Hi, i want to port my TS strategies to MC but have following problem.
following picture tells whole story
Any help is appreciated. Of course i want to have same behaviour like on TS.
see post #5
viewtopic.php?f=16&t=6929
by TJ
10 Nov 2013
Forum: MultiCharts
Topic: Calculating # of minutes/hours until expiry [SOLVED]
Replies: 5
Views: 2306

Re: Calculating # of minutes/hours until expiry [SOLVED]

Thanks JoshM. This is helpful. If MC has as comments, or can verify this approach, that would be much appreciated Verification is up to you, the user. It is not that difficult to test, you have to do it as part of your autotrade coding process anyway. Nobody can do that for you unless you publish y...
by TJ
10 Nov 2013
Forum: MultiCharts
Topic: global variable in MC can be only used in Real time?
Replies: 4
Views: 1623

Re: global variable in MC can be only used in Real time?

I found that global variable cant store the value in history but only the current latest value, which make the strategy back testing impossible to finish. For instance, You insert this indicator in one workspace: vars:GVset("GVtest"),var1(0);// GVSetNamedDouble(Gvset,0); if time=1500 then begin GVS...
by TJ
10 Nov 2013
Forum: MultiCharts
Topic: Unexpected submitted order while strategy trading
Replies: 4
Views: 1854

Re: Unexpected submitted order while strategy trading

Excuse me for the annoyance, I'm new with Multicharts; I'm trying to automate a trading strategy but I can't understand while there are these submitted orders sent by "manual trading", that I have not sent, always a buy and a sell order at the restarting time of the Trading Work Station of IB (11:3...
by TJ
07 Nov 2013
Forum: MultiCharts
Topic: changing the real time chart symbol via command line script
Replies: 5
Views: 1704

Re: changing the real time chart symbol via command line scr

just curious, why do you need to use ascii merge on 6A? Can't you just get the data straight from eSignal?
by TJ
07 Nov 2013
Forum: MultiCharts
Topic: Put text on the right top corner: visual fix location [SOLVED]
Replies: 12
Views: 3289

Re: Put text on the right top corner: visual fix location [SOLVED]

I'M an old old adolescent... Did you follow all your parent advise??....Yo man :) A little problem remain. The line is unreadable the first time that I the chart is loaded. I need to reload by changing the scale to get it clear. The problem disappear after changing the scale and returning to the or...
by TJ
06 Nov 2013
Forum: MultiCharts
Topic: Put text on the right top corner: visual fix location [SOLVED]
Replies: 12
Views: 3289

Re: Put text on the right top corner: visual fix location [SOLVED]

ABC, TJ
Text_Float was the solution
LOL... ABC told you that in post #2. :-)

Glad you made it working,
and thanks for sharing your code.
by TJ
06 Nov 2013
Forum: MultiCharts
Topic: Put text on the right top corner: visual fix location [SOLVED]
Replies: 12
Views: 3289

Re: Put text on the right top corner: visual fix location [SOLVED]

Hello I want to code to show, on the top right corner of my chart the value of the actual spread (bid-ask) I know I could get the value from GetApiInfo for the time and price My interrogation is more, How can I calculate to have the string at a visually fix location. A pip does not have the same va...
by TJ
05 Nov 2013
Forum: MultiCharts
Topic: Renko bar with time resolution
Replies: 16
Views: 6116

Re: Renko bar with time resolution

Renko is only a visual presentation, there is no magic to it.
The underlying logic is very simple;
for trading or backtesting purposes, I would duplicate the logic in a tick chart.
by TJ
03 Nov 2013
Forum: MultiCharts
Topic: prg trade instrument B based on chart signal of instrument A [SOLVED]
Replies: 1
Views: 1237

Re: prg trade instrument B based on chart signal of instrume [SOLVED]

can I instruct the buy/sell for instrument B on the chart of instrument A ?
Please see post #18:
Multi-data strategy... pg. 34
viewtopic.php?f=16&t=10811
by TJ
01 Nov 2013
Forum: MultiCharts
Topic: Bid & Ask from the status line [SOLVED]
Replies: 1
Views: 1459

Re: Bid & Ask from the status line [SOLVED]

Hello I see that on the status line, the bid and ask is available. Could we access this value from coding? It would be neat if we can because to get the spread, we need to load a 2' chart set on the Ask and compare both the bid and ask to get the value. Martin Go to wiki , in the section for PowerL...
by TJ
01 Nov 2013
Forum: MultiCharts
Topic: Bar Number Setting [SOLVED]
Replies: 3
Views: 6431

Re: Bar Number Setting [SOLVED]

Thanks TJ and sorry for the mess. I checked out the wiki. It seems that Multicharts does not support "bars-since". I can easily find the 52-week high but no easy way to find the corresponding bar number. Am I right? 1. set up a variable, 2. when the chart reaches the 52-week high, capture the bar n...
by TJ
31 Oct 2013
Forum: MultiCharts
Topic: Bar Number Setting [SOLVED]
Replies: 3
Views: 6431

Re: Bar Number Setting [SOLVED]

Hi, I wrote a script to find today's volume is how many days largest and showed the number as indicator in the chart. The purpose is to show the importance of today's volume. For example, if today's volume is the largest of the last 200 trading days, it is obviously more important than the volume j...
by TJ
28 Oct 2013
Forum: MultiCharts FAQ
Topic: Volume Charts Wrong By Factor of 10 to 100+
Replies: 3
Views: 4593

Re: Volume Charts Wrong By Factor of 10 to 100+

Hello trader39, Contract Resolution requires tick data. The bars are plotted based on the volume of each tick. The bar is closed when the volume reaches the specified resolution. MultiCharts uses summation and/or fragmentation of separate ticks volume. Summation of ticks is used when one tick volum...
by TJ
28 Oct 2013
Forum: MultiCharts
Topic: No Chart Trading on ZZ3
Replies: 5
Views: 1544

Re: No Chart Trading on ZZ3

Hi, While testing the latest MC 8.8b2, I find a weird bug. I'm using IB trading FTSE 100 Index Future (ZZ3), and the chart trading can't get connected to tws. There are no ask&bid prices. The position info is somehow reachable, but it isn't updated with price move. This situation does not happen to...
by TJ
28 Oct 2013
Forum: MultiCharts
Topic: transform eld from TS to multicharts [SOLVED]
Replies: 8
Views: 2275

Re: transform eld from TS to multicharts [SOLVED]

After importing into the multicharts, I can't see the code of the indicators.That's why I am here to look for help.
then the indicator must be copyrighted and locked.
You will need to contact tech support to see if they can help,
or you can ask the author to provide you with the source code.
by TJ
28 Oct 2013
Forum: MultiCharts
Topic: transform eld from TS to multicharts [SOLVED]
Replies: 8
Views: 2275

Re: transform eld from TS to multicharts [SOLVED]

It can be compiled,but wouldn't be displayed in the charts.
Can you open the indicator and read the code?
If so, please post the code and we can make the corrections for you.


[FAQ] How to Post Codes (that people can read)
viewtopic.php?f=16&t=11713
by TJ
28 Oct 2013
Forum: MultiCharts
Topic: transform eld from TS to multicharts [SOLVED]
Replies: 8
Views: 2275

Re: transform eld from TS to multicharts [SOLVED]

I've got a eld of TS.It doesn't work in Multicharts. What should I do to transform it to multicharts? What do you mean by " doesn't work "? won't compile? compiled with an error message? can't open the indicator? compiled, but won't run? ran, but gives erroneous results? ran, and gives error messag...
by TJ
27 Oct 2013
Forum: MultiCharts
Topic: Multicharts can't send short orders with WeBank on stocks
Replies: 29
Views: 9774

Re: Multicharts can't send short orders with WeBank on stock

TJ, as I told in my post, I talked with MC team. They are aware that the problem is in the way Multicharts communicates with WeBank through the API. Since it is Multicharts that made the software that communicates with WeBank, here the problem is Multicharts and not Webank. Simply Multicharts must ...
by TJ
27 Oct 2013
Forum: MultiCharts
Topic: Multicharts can't send short orders with WeBank on stocks
Replies: 29
Views: 9774

Re: Multicharts can't send short orders with WeBank on stock

Hi, unfortunately, as I signaled to MC team a long time ago, Multicharts actually can't send buy and sell (short overnight) orders with WeBank on (italian) stocks. You told me you had contact with WeBank team to solve this problem, but month are passing and nothing changes. How long do you think it...
by TJ
26 Oct 2013
Forum: MultiCharts
Topic: Incorrect order execution [SOLVED]
Replies: 5
Views: 2494

Re: Incorrect order execution [SOLVED]

Please see this web page:
How can I trade stocks during the pre market or post market?
http://ibkb.interactivebrokers.com/article/576

hope it helps.
by TJ
26 Oct 2013
Forum: MultiCharts
Topic: Incorrect order execution [SOLVED]
Replies: 5
Views: 2494

Re: Incorrect order execution [SOLVED]

My Broker is Interactive Broker, below the screenshot relative to the broker profile.
Untill now I've used the Paper Account, I don't know if this mught be the reason of rejected order.
What you are showing is the setting in MultiCharts.
You need to go to TWS to check the broker-side setting.
by TJ
26 Oct 2013
Forum: MultiCharts
Topic: Incorrect order execution [SOLVED]
Replies: 5
Views: 2494

Re: Incorrect order execution [SOLVED]

Hello, I'm trying to automate a trading strategy, but I can't understand why the first order of the day is not filled, but rejected (TIF error), and then executed when the signal reoccurs; I think the symbol mapping is ok due tu the execution but why the delay? Thanks a lot. ADG Who is your broker?...
by TJ
26 Oct 2013
Forum: MultiCharts
Topic: Array Inquire [SOLVED]
Replies: 2
Views: 1712

Re: Array Inquire [SOLVED]

Hi, Need a little help. How to SUM Array store data? Below example works but what if the Array is very large like 200 so is there any simply way to SUM data instead of writing code to add each Array. array: AvArray[6](0); AvArray[1]=10; AvArray[2]=120; AvArray[3]=14; AvArray[4]=123; AvArray[5]=133;...
by TJ
23 Oct 2013
Forum: MultiCharts
Topic: broken workspace [SOLVED]
Replies: 5
Views: 2118

Re: broken workspace [SOLVED]

Hello,
I upgraded to 8.8 beta 2 and some charts are broker :
please note that the three series of charts use the same indicators, only symbols differ.
many thanks for your help
The charts are still good. The symbol is invalid.
You can add the symbol to the chart again and they should work.
by TJ
22 Oct 2013
Forum: MultiCharts
Topic: How do I fix ... ?
Replies: 2
Views: 1095

Re: How do I fix ... ?

For some reason, the PowerLanguage editor is scrolling horizontally as I type ... which is very distracting. How do I make it so that it doesn't do that?
I think it has to do with Accessibility Options in your computer.
What operating system are you using?
by TJ
22 Oct 2013
Forum: MultiCharts
Topic: Realtime vs backtest mismatch problem [SOLVED]
Replies: 22
Views: 9248

Re: Realtime vs backtest mismatch problem [SOLVED]

Checking BARSTATUS is a standard practice for sync critical analysis in multi-data studies.
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Chart trading
Replies: 7
Views: 1786

Re: Chart trading

Hello, I have a chart with chart trading enabled and IB broker connected and green light. I can place order by dragging for example the STP icon to the chart, that works. But, when I right click on the chart the pop up menu does not display the option for "Place Order". What am I doing wrong ? Than...
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Chart trading
Replies: 7
Views: 1786

Re: Chart trading

TJ, restarting does not change it. I am using MC64 version 8.5 (build 6851). thank you That is strange. If the function was working before, and does not work now, something must be corrupted. Usually a restart of the computer can reset everything. Please contact tech support through Live Chat. They...
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Code a Function for specific time frame [SOLVED]
Replies: 4
Views: 1734

Re: Code a Function for specific time frame [SOLVED]

I apologize for the lack of detail. I would like to calculate the following function for a 1 minute and 2 minute time frame, and then plot the total (sum) onto a screener. :: Example: Result of function BR_TrendDOWN(1 minute time frame) + Result of function BR_TrendDOWN(2 minute time frame) = 1+1 =...
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Chart trading
Replies: 7
Views: 1786

Re: Chart trading

Hello, I have a chart with chart trading enabled and IB broker connected and green light. I can place order by dragging for example the STP icon to the chart, that works. But, when I right click on the chart the pop up menu does not display the option for "Place Order". What am I doing wrong ? Than...
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Error when installing Multicharts [SOLVED]
Replies: 5
Views: 1986

Re: Error when installing Multicharts [SOLVED]

Thank you TJ,
I did end up re-installing a new downloaded version directly from th MC website and went OK.
Thanks for the update. I am glad it all went well.
by TJ
20 Oct 2013
Forum: MultiCharts
Topic: Henry and Andrew
Replies: 6
Views: 1741

Re: Henry and Andrew

May I had a special thanks to TJ, bowlesj3 (John) and many others end user who, not being employed by MC, offer their free time to help MC community. You guy's are awesome for your generosity. We, learn a lot from your comments, opinion and idea. You deserve real big thanks from all of us. In my op...
by TJ
19 Oct 2013
Forum: MultiCharts
Topic: Code a Function for specific time frame [SOLVED]
Replies: 4
Views: 1734

Re: Code a Function for specific time frame [SOLVED]

Is it possible to code a function to output a result based on a specific time frame? For example: Calculate FunctionA(1minute time frame) + FunctionA(2min) + FunctionA(5min) + ... Any assistance would be appreciated. Thanks. I am not sure what you are looking for... your example does not explain an...
by TJ
19 Oct 2013
Forum: MultiCharts
Topic: Error when installing Multicharts [SOLVED]
Replies: 5
Views: 1986

Re: Error when installing Multicharts [SOLVED]

You can try deleting the old installation (without deleting the database),
and re-install again.

You should always back up the data just in case.
by TJ
19 Oct 2013
Forum: MultiCharts
Topic: Error when installing Multicharts [SOLVED]
Replies: 5
Views: 1986

Re: Error when installing Multicharts [SOLVED]

I'm getting this error when installing Multicharts
Which version are you installing?

Is this a new installation on a new computer? or an upgrade from a previous version?
by TJ
19 Oct 2013
Forum: MultiCharts
Topic: Enhancement of accuracy of data collected from IB
Replies: 16
Views: 6237

Re: Enhancement of accuracy of data collected from IB

Hello, I wake up this old thread, because with the time, I have seen how much it misses to MC. For the purpose of accuracy, I double check some closes between 5 min data and daily data. For 2013, I have found at least 4 5-min bars that have their close different from the daily close. My reference i...
by TJ
19 Oct 2013
Forum: MultiCharts
Topic: CSIData - Futures
Replies: 4
Views: 1486

Re: CSIData - Futures

You can go to QuoteManager

Tools > Symbol Dictionary > Add
by TJ
18 Oct 2013
Forum: MultiCharts
Topic: CSIData - Futures
Replies: 4
Views: 1486

Re: CSIData - Futures

Hi: When connecting to CSIdata for Futures, it looks like MC has it's own rules for the continuous contracts (eg: @BAC, @ES). The problem is that I have no idea what those rules are - for many roots, there are GAPS on the "@" symbols. Can you please let me know what the rules are and if possible, h...
by TJ
17 Oct 2013
Forum: MultiCharts
Topic: Automated Trading [SOLVED]
Replies: 3
Views: 1738

Re: Automated Trading [SOLVED]

Would i use this exact code in the PowerLanguage Editor and then compile it, then use it with the other signals that i would use for automated trading? The answer is yes and no... it depends. I would suggest you to start here. A little time investment will take you a long way. https://www.multichar...

Go to advanced search