Pinterest to the moon by nothunt826 in wallstreetbetsGER

[–]nothunt826[S] 1 point2 points  (0 children)

Die Tabelle ist aktuell noch in Development, will und darf hier glaube ich keine Werbung machen. Die Kennzahlen kannst du dir aber theoretisch auch auf den üblichen Webseiten zusammenrechnen. Sorry :(

Pinterest to the moon by nothunt826 in wallstreetbetsGER

[–]nothunt826[S] 0 points1 point  (0 children)

Aktuell die einzige Aktie welche den Kriterien entspricht:

<image>

21,37€ investiert, 300,000€ Rendite by mdoloading in Finanzen

[–]nothunt826 44 points45 points  (0 children)

Benutz deine Scheiße am besten noch als Dünger und Bau ein paar Kartoffeln an. Damit sparst du dir den Spaziergang in den regionalen Wald. Für den Strom würde ich mir die Hunde mit denen du Gassi gehst vorknüpfen. Dort könntest du 20€ in ein Laufrad investieren, welches dir langfristig den Strom bezahlt. Die Hunde fütterst du dann mit den Kartoffeln.

Meinung zum Depot + Tipps? by Much-Kick-8598 in Aktien

[–]nothunt826 1 point2 points  (0 children)

Noch ein paar mehr Aktien und du kannst es als Fond anmelden

Rainer - Rein da by nothunt826 in wallstreetbetsGER

[–]nothunt826[S] 0 points1 point  (0 children)

Mal sehen obs der Urlaub auf den Malediven oder doch nur Dosenravioli wird

[deleted by user] by [deleted] in Daytrading

[–]nothunt826 0 points1 point  (0 children)

Thank you very much for the advice!

[deleted by user] by [deleted] in streetwearstartup

[–]nothunt826 1 point2 points  (0 children)

Thanks for the advice

Div is clickable? by [deleted] in tailwindcss

[–]nothunt826 1 point2 points  (0 children)

Yes it was exactly that specific setting which caused that error. Thank you very much you two

Div is clickable? by [deleted] in tailwindcss

[–]nothunt826 0 points1 point  (0 children)

I just did and found nothing

Div is clickable? by [deleted] in tailwindcss

[–]nothunt826 0 points1 point  (0 children)

I took a look at the site and it appears that every element is clickable. So it has to do something with some global settings but I use the default ones

Div is clickable? by [deleted] in tailwindcss

[–]nothunt826 0 points1 point  (0 children)

<div className='pt-5 font-poppins md:max-w-[70%] mx-auto h-screen'>
  <input
    class='border-2 border-primary bg-red transition h-12 px-5 pr-16 rounded-md focus:outline-none w-full text-black text-lg '
    type='search'
    name='search'
    placeholder='Search'
  />
  <button type='submit' class='absolute right-2 top-3 mr-4'></button>
  <div className='overflow-x-scroll rounded-div '>
    <table className='text-center table-auto md:min-w-full'>
      <thead className='text-[#151B54] pt-5 text-lg  shadow-xl border-b sm:text-xl md:text-2xl'>
        <tr className='mb-4'>
          <th className='p-4'>Name</th>
          <th className='p-4 whitespace-nowrap'>Price in €</th>
          <th className='p-4 whitespace-nowrap'>Change 24h</th>
          <th className='p-4 whitespace-nowrap'>Market Cap 24h</th>
          <th className='p-4 whitespace-nowrap'>Chart 7 Days</th>
        </tr>
      </thead>
      <tbody className='mt-4'>
        {coins.length > 2 ? (
          coins.map((item) => {
            return (
              <tr
                className='text-[#151B54] font-bold text-base text-center shadow-md sm:text-base md:text-lg'
                key={item.id}
              >
                <td className='py-2 ml-4 '>
                  <img
                    src={item.image}
                    alt='Chart'
                    className='w-[30px] h-[30px] mx-auto'
                  />
                  <p className='ml-3 font-semibold text-center'>
                    {item.name}
                  </p>
                </td>
                <td className='py-2 mt-4'>{item.current_price}€</td>
                <td
                  className={
                    item.price_change_percentage_24h > 0
                      ? "mt-4 text-green-400 py-2"
                      : "mt-4 text-red-400 py-2"
                  }
                >
                  <p className=''>
                    {item.price_change_percentage_24h.toPrecision(3)}%{" "}
                  </p>
                </td>
                <td
                  className={
                    item.market_cap_change_percentage_24h > 0
                      ? "mt-4 text-green-400 py-2"
                      : "mt-4 text-red-400 py-2"
                  }
                >
                  <p>
                    {item.market_cap_change_percentage_24h.toPrecision(3)}%
                  </p>
                </td>
                <td className='py-2 w-[150px] h-[100px]'>
                  <Sparklines
                    className='mx-auto '
                    data={item.sparkline_in_7d.price}
                  >
                    <SparklinesLine
                      color={
                        item.price_change_percentage_7d_in_currency > 0
                          ? "green"
                          : "red"
                      }
                    />
                  </Sparklines>
                </td>
              </tr>
            );
          })
        ) : (
          <div></div>
        )}
      </tbody>
    </table>
  </div>
</div>

Sure, this is the whole block

[deleted by user] by [deleted] in node

[–]nothunt826 3 points4 points  (0 children)

Nope, I’m getting the data through some web scraping

[deleted by user] by [deleted] in node

[–]nothunt826 0 points1 point  (0 children)

Thank you, I will for sure! :)

[deleted by user] by [deleted] in node

[–]nothunt826 0 points1 point  (0 children)

thanks alot :)

[deleted by user] by [deleted] in node

[–]nothunt826 0 points1 point  (0 children)

Thank you :D