Analysis on candles

Discussion in 'Technical Analysis' started by nooby_mcnoob, Jul 3, 2019.

  1. SunTrader

    SunTrader

    Currencies pretty much open a new daily bar - where they previously closed, obviously excluding certain Sunday nights when news related events happen over the weekend.

    So to say cross candle bottom - that's where they left off :confused:
     
    #11     Jul 3, 2019
    nooby_mcnoob likes this.
  2. Great point, the analysis roughly excludes the first hourly bar.

    Code:
    def getFirstCrossFromBelow(x,column,column_to_cross):
      crosses = x[(x.baropen_datetime > x.session) &
      (np.sign(x[column] - x[column_to_cross]) > 0) & \
      (np.sign(x[column].shift() - x[column_to_cross]) < 0)]
      if len(crosses):
      return crosses.iloc[0].baropen_datetime
    
     
    #12     Jul 3, 2019
  3. normal distribution (i.e. bell shaped cureve) would allow you stablish mean and SD, from which SD divided by square root of number of observations would give you std error of the mean (SEM) from that co-efficient of variation within a population of candles.
     
    #13     Jul 3, 2019
  4. Distribution of *what* though?
     
    #14     Jul 3, 2019
  5. REDP1800

    REDP1800

    Candles because Japanese stock market is doing great and all samurai
     
    #15     Jul 4, 2019
  6. REDP1800

    REDP1800

    use candles. candles slow ur thinking down. put out the candles. they suck in so many ways..types..colors wicks..wtf...
     
    #16     Jul 4, 2019
  7. Candle analysis emerged more than 20 years ago, and is still quite popular today. Some people even consider that Japanese candles are the easiest and most comfortable format to represent the prices of the assets
     
    #17     Jul 4, 2019
  8. REDP1800

    REDP1800

    candles are good for looking at the last bar but not the one being built
     
    #18     Jul 4, 2019
  9. Yeah no disagreement there.
     
    #19     Jul 5, 2019
  10. Turveyd

    Turveyd

    Candles are randomly formed by time and by themselves pointless.

    But better than line because you can see where spikes down/up have happened, which can indicate reversals.
     
    #20     Jul 5, 2019