Hello, IIF is NOT a conditional statement. It is a FUNCTION that returns values, therefore assignments inside argument part are wrong. See it is listed in...
Hello, Some things to check: Use "X" field instead of "C" if you are not assigning "H", "L", "O" fields individually. Make sure that you are not overflowing...
Glenn, ... I have saved the export.dll file into the plugins folder, but AB seems unable to find it. I have tried unloading/loading all plugins but export.dll...
Hello, By default the zig chart can only be used by o,h,l or close. But I want to have it based on Low at a down swing and high on up swing. So it should...
Hi Thomas, I responded to this question a year or 2 ago, and I have copied that message below. Hope it helps... Steve ... Hi Berti, I think this idea is harder...
Hello Dan - Is it possible that you're dividing by zero in the statement for CloseLocValue, say for some of the tickers? Possibly using the Nz function ? like...
G'day all, How would you implement an indicator from this description: "The lagging line is the current close plotted 26 periods behind" ??? LaggingLine =...
G'day all, I've been using the Ichimoku indicator (from Files section on yahoogroup site) and doing some backtesting. But, the following line was brought to my...
Hello, The function below is based on a code posted to this group last year by another AB user. I solely converted the code to a function (...see below), with...
Is it OK to start threads in the forum that don't directly relate to Amibroker, but do relate to investing in general? Such as opinions about individuals,...
No need to be sorry as sharing is just fine. To be clear, I am calculating Expectancy, defined as- (%WINS x Avg Profit %) + (%LOSSES x Avg Loss %) Lets say,...
Hello Steve and Antonio, Thank you very much for your really interesting code ! Regards Thomas www.tradingbasis.com _____ Von: amibroker@yahoogroups.com...
Hi, You can go back and forward through the ref function. LaggingLine = Ref(C, -26); LaggingLine = Ref(C, 26); Regards Thomas www.tradingbasis.com ... Von:...
Hi Antonio, Thank you very much for your kindness. I'm trying to find a trading strategy (set-up) that I have confidence in and works. It seems to be a real...
Hello, How about adjusting your expectancy formula? Don't you think that it is easier? Multiply it by margin ratio and you are done. Takes few seconds. Best...
i'll suggest this one--more a pivot indicator, but it may work for what you want.. this one by Stephane: HP = HHVBars( High, 10 ) == 0; LP = LLVBars( Low, 10...
Thank you Ronbo !! Regards Thomas www.tradingbasis.com ... Von: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] Im Auftrag von ronbo Gesendet:...
I'm drawn to these routines that use ZIG that are so prescient and 'look into the future" - but weary that they will not work in EOD trading. That is because...
Hi, Of course the zig indicator looks into the future. In my opinion it is useful for determining waves, etc.. but never for backtest ! Regards Thomas ...
Just started usikng AmiBroker for real time tracking today and I had the following question. I underestand that if I put a trendline on and set the study ID it...
You answered your question in yourself in your Second opinion, ie place it in a Scan Cheers Prashanth ... From: mikelaurataylor To: amibroker@yahoogroups.com ...
O.K. I think I have a good system for trading stocks. (We will have to see the results in real terms to be sure). When I do a scan, all I get is the buy or...
Sorry, I had to edit my first reply. Let's try this again.:) In your expectancy formula, are you calculating Avg Profit and Avg Loss as % (as it appears in...
hello here is a small request which can help in some unique ways. if i could do wildcard search on stock names i would be great. say if there are 10 tech...
Hello, Here is the code used for the ECO but written for Investor R/T software. Could someone please code it for AB. I think it would make a good edition to...
I can't give you complete code, but there is a string find function you should be able to put to work. Here's some code to modify: list = CategoryGetSymbols(...
A couple of months ago I came across some code posted here that would return my current position long or short. Does anyone have that and could the post it . ...
Thomas - thanks for replying. Could one use it to signal a pivot point on a day by day basis? Guess I should try it and see, before and after a daily update....