Recent content by fxshrat

  1. F

    Anyone tried courses from J B Marwood

    Interesting quote by that guy found on his blog (and page saved to hard drive) (I am not posting link as I am not willing to give him free traffic directly.) So he even admits looking and scanning for code elsewhere. Looking for code because of being clueless and then selling code. Interesting.
  2. F

    Anyone tried courses from J B Marwood

    Just stay away from snake oil salesmen. That guy of first post just seems to be another one of them. He is not a professional programmer. He once asked at official AmiBroker forum how to code on backtesting/optimizing candlestick pattern because he had no clue how to do it. I have posted full...
  3. F

    MultiCharts Standard vs MultiCharts.NET

    Guys, I fear we are hijacking thread here. But since you quoted me... the version you purchase from them is a lifetime one plus two years of further free lifetime upgrade versions which get developed afterwards. After those two years you don't have to pay further upgrade from them if you don't...
  4. F

    MultiCharts Standard vs MultiCharts.NET

    Honestly your response is a quite amusing if comparing it to your previous post and it’s a typical MC community yadda yadda yadda response after getting enlightened. You were asking whether one is worth its price being cheaper than the other one. So since I know both ones I responded with some...
  5. F

    MultiCharts Standard vs MultiCharts.NET

    Yes, even though it is cheaper it is better. Price doesn't tell anything about quality, functionality, power,... And over the years MC just tries to catch up with AB as they try to copy functionalities (not to mention they still haven't reach the same high speed not a bit. As aside.. since you...
  6. F

    Yahoo Historical Data - Did they change the URL recently?

    AmiQuote 3.14 does work with Yahoo again http://www.amibroker.com/devlog/2017/05/17/amiquote-3-14-released/
  7. F

    yield curve / time 3d graph

    In AmiBroker you can do such graphs, see 4th post here http://amibrokerforum.proboards.com/thread/100/achievable-using-tiny-bit-imagination?page=1&scrollTo=333 Other alternatives R, Matlab, Python, ...
  8. F

    multichart vs amibroker ?

    What do you not understand about it? The other guy on the previous page has posted examples. Here on these two pages http://amibrokerforum.proboards.com/thread/100/achievable-using-tiny-bit-imagination there you have another several ones, mainly charting ones since other features are more...
  9. F

    multichart vs amibroker ?

    AmiBroker is more powerful and more flexible. Another thing is AmiBroker stands for innovation while MC rather stands for copying things (always coming late). Is MC still a such ressource hog? The last time I tested it it was painfully slow. Autotrading in AB runs just fine. As aside if you...
  10. F

    Amibroker formula language algorithms and questions

    AFL is similar to C but much easier. As Tomasz J. recommends in the quote of the 2nd post of this link http://amibrokerforum.proboards.com/thread/107/afl getting a C programming book i.e. by Kernighan & Ritchie might be a good idea. Other than that every function in the function reference guide...
  11. F

    Amibroker formula language algorithms and questions

    As for 1. and 2. What exactly do you mean there? Are you after an equality check? Like volumecondition = V == 100000; oicondition = OI == 70000; As for 3. There are several ways to define trending. One out of quadrillions... period = 20; someuptrendcondition = H >= Ref( HHV( H, period ), -1...
  12. F

    amibroker questions

    As I've mentioned in my previous post you may add to your code whatever you like to add! After having edited a code already being applied to chart pane you simply click 'Apply' button and the chart pane will immidiately update too. If you want to code price movement within a date or date/time...
  13. F

    amibroker questions

    The trend line you have drawn there is not part of the code in your picture. It is an object from the tool bar being drawn by your hand. You may call that trend line study from code by applying the Study() function in your code. You may go to the knowledge base doing a search by entering 'study'...
  14. F

    Any windows app out there that would read aloud a quote continuously

    In AmiBroker you could do something along following lines in order to say something in some interval of your choice. if( (Now(4) % 100) % 6 == 0 ) { // say something every 6 seconds of a minute Say( StrFormat( "S P Y last quote is %1.2f", LastValue(C) ) ); // tell last saved price of SPY...
  15. F

    Amibroker - How to set the chart only show morning session by Program

    Other than going formula level you may set per group intraday sessions! So for example if you have Asian stocks or futures you may move them to some "Group" and if you have some US symbols you move those ones to some other "Group". See "Symbol - Organize Assignments" of menu bar. If you have...
Back
Top