Search results

  1. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Good Work :clapping:. I got it up and running in 5 minutes. If you are willing, you can share the code with me. You may PM me or I shall PM you my mail ID. (Your PM is closed) I may not be able to code in...
  2. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Export to excel is not enough. You should be able to see live quotes in Excel. :)
  3. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M I install RTNEST and setup things-it works fine.back fill works but with a different symbol-if I import data with LT symbol, back fill occurs with LT-EQ symbol. Then I have a powerfailure at 1230 hrs...
  4. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Use RTGoogle for Nifty Spot only and RTNow for all other scrips. They will feed the same database. RTGoogle tends to hang if it does not receive data from Google finance. Start RTNOW first and then RTGoogle...
  5. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M That is weird. Ask your broker.
  6. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M How do you know that it is opened in normal mode? What is the real issue?
  7. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Start RTNest also in Admin mode.
  8. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M You are using incompatible utilities. Use RTNOW instead of RTGoogle.
  9. josh1

    Day Trading Futures

    Hey, Nice post but incomplete..! Please repeat this post with links to the threads/posts referenced. That will be really awesome learning for others. I have straightened it for your convenience. On second thought, you can do a new thread out of this. Say "How I learnt to become profitable...
  10. josh1

    Simple Coding Help - No Promise.

    You need something like this... for( i = 0; i < BarCount; i++ ) { if( Buy[i] ) PlotText( "Buy@" + C[ i ], i-3,low[i]-10, colorDarkBlue, colorSkyblue ); AlertIf(Buy, "SOUND H:\\AMIBROKER\\Sound\\ding.WAV", "Audio Alert", 1); //if( Cover[i] ) PlotText( "Cover@" + O[ i ], i-3, Low[i]-10...
  11. josh1

    Simple Coding Help - No Promise.

    This AFL exports entire price data into .csv file when I click on scan or explore in New Analysis. How can I make it export data for given Date range only? Can anybody help? Filter=1;// By Barry Scarborough 7/14/2008, updated to handle large files 8/30/08 // #### READ THIS FIRST #### READ THIS...
  12. josh1

    Day Trading Futures

    Will it take-off ? Or Crash ?
  13. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M You passed the first challenge of getting data to excel? In that case .. 1. Getting data to Amibroker - Damn easy.. Get the data in same RTTiger sheet exactly as per column names and Click on Start...
  14. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Why don't you try it yourself..? Backup both databases before your trial. Let me know the outcome... :)
  15. josh1

    Simple Coding Help - No Promise.

    The following code identifies Demandpoint and Supply point as (H and L). Candle immediately after a demand point is Yellow and that immediately after Supplypoint is Purple. I want to raise - Buy - when price crosses 3 points above yellow candle but before next demand or supply point Sell -...
  16. josh1

    Day Trading Futures

    You might not have faced it if your refresh period was 1 sec. However, if terminal froze for few seconds, and price jumped, then that would also not help. I had no problem with NSENOW. A few days ago, ZT lagged behind by about 10 minutes when market was in frenzy. Thereafter I am using NOW...
  17. josh1

    Simple Coding Help - No Promise.

    Happy, Do you know how to remove unwanted values from Y axis? With Pratap's AFLs Y axis is getting cluttered with too many values. It takes a lot of time to locate last Close price among it. regards Never mind.. I found it. Inserted "stylenolabel" every where
  18. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M See this thread........ http://www.traderji.com/amibroker/91629-read-values-now-without-excel.html
  19. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Change time format to HH:mm. 1. LTP =C = O =H =L. 2.Thereafter, If C>H, H=C. if C<L, L=C. 3.After 1 min, go to step 1. If you do not mind, share the code when done.
  20. josh1

    Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts MS

    Re: Free RealTime Data NOW Nest ODIN Trade Tiger Google Yahoo to AmiBroker, Fcharts M Timer subroutine creates a MyCSVNest.txt file every time it is run. Old file is overwritten. If you want all quotes, open it for appending. Find this line. in MakeCSV subroutine - Set a =...